Skip to content

Commit ebb088c

Browse files
committed
Use make instead in GitHub Actions
1 parent 37e8061 commit ebb088c

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
deno-version: ${{ env.DENO_VERSION }}
2424
- name: Lint
25-
run: deno lint
25+
run: make lint
2626

2727
format:
2828
runs-on: ubuntu-latest
@@ -32,8 +32,7 @@ jobs:
3232
with:
3333
deno-version: ${{ env.DENO_VERSION }}
3434
- name: Format
35-
run: |
36-
deno fmt --check
35+
run: make fmt-check
3736

3837
test:
3938
runs-on: ubuntu-latest
@@ -43,8 +42,7 @@ jobs:
4342
with:
4443
deno-version: ${{ env.DENO_VERSION }}
4544
- name: Test
46-
run: |
47-
deno test
45+
run: make test
4846
timeout-minutes: 5
4947

5048
typecheck:
@@ -55,5 +53,4 @@ jobs:
5553
with:
5654
deno-version: ${{ env.DENO_VERSION }}
5755
- name: Type check
58-
run: |
59-
deno test --unstable --no-run ./*.ts
56+
run: make type-check

0 commit comments

Comments
 (0)