Skip to content

Commit 6b4d256

Browse files
committed
chore: change some thingamajig
1 parent 0d6da4b commit 6b4d256

File tree

7 files changed

+590
-15
lines changed

7 files changed

+590
-15
lines changed

.github/workflows/ci.yml

+12-7
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,20 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616

17-
- name: Set up Node
18-
uses: actions/setup-node@v2
17+
- uses: actions/setup-node@v2
1918
with:
2019
node-version: "14"
2120

2221
- run: |
23-
docker-compose up --detach
24-
export PG_META_PORT=8000
2522
npm clean-install
26-
npm run dev &
27-
npx wait-for-localhost-cli --use-get $PG_META_PORT
28-
npm test
23+
npm run test
24+
25+
prettier-check:
26+
name: Prettier check
27+
runs-on: ubuntu-20.04
28+
steps:
29+
- uses: actions/checkout@v2
30+
31+
- uses: actionsx/prettier@v2
32+
with:
33+
args: --check "{src,test}/**/*.ts"
File renamed without changes.

0 commit comments

Comments
 (0)