mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-07-09 04:50:56 +00:00
Run type checks in GitHub workflow
This commit is contained in:
parent
26b0d6ea96
commit
62998a0b38
1 changed files with 9 additions and 0 deletions
9
.github/workflows/ci.yaml
vendored
9
.github/workflows/ci.yaml
vendored
|
|
@ -24,3 +24,12 @@ jobs:
|
||||||
with: { node-version: 16 }
|
with: { node-version: 16 }
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run lint
|
- 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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue