Merge pull request #79 from remcohaszing/github-actions-tsc

Run type checks in GitHub workflow
This commit is contained in:
Remco Haszing 2021-08-19 08:50:37 +02:00 committed by GitHub
commit d4c6747667
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,3 +24,12 @@ jobs:
with: { node-version: 16 }
- run: npm ci
- run: npm run lint
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 16 }
- run: npm ci
- run: npx tsc