From 62998a0b383fd9be23b1d65b918feac4c948ee03 Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Wed, 18 Aug 2021 21:47:53 +0200 Subject: [PATCH] Run type checks in GitHub workflow --- .github/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 507688b..808d0b2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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