Skip to content

Commit db14d07

Browse files
committed
Add type check to CI
1 parent 486f9a8 commit db14d07

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ on:
1515
- main
1616

1717
jobs:
18+
typecheck:
19+
runs-on: ubuntu-20.04
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: denoland/setup-deno@main
24+
with:
25+
deno-version: ${{ env.DENO_VERSION }}
26+
- name: Type check
27+
run: |
28+
deno test --unstable --no-run ./**/*.ts
29+
1830
lint:
1931
runs-on: ubuntu-20.04
2032

0 commit comments

Comments
 (0)