diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/doc-checks.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/doc-checks.yml b/.github/workflows/doc-checks.yml index b5b278e..a9b2d5a 100644 --- a/.github/workflows/doc-checks.yml +++ b/.github/workflows/doc-checks.yml @@ -31,3 +31,16 @@ jobs: - name: Prettier check run: npm run prettier:check working-directory: docs + typecheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: bahmutov/npm-install@v1 + with: + working-directory: docs + - name: Build + run: npm run build + working-directory: docs + - name: TypeScript check + run: npm run typecheck + working-directory: docs |