Skip to content

Commit

Permalink
Improve static checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomekzaw committed Apr 9, 2024
1 parent 9d6d790 commit 6efdffb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 40 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/check-root.yml → .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test TypeScript and Lint
name: Typecheck, lint and test
on:
pull_request:
merge_group:
Expand Down Expand Up @@ -27,11 +27,15 @@ jobs:
- name: Install dependencies
run: yarn install --immutable

- name: Check types
run: yarn typecheck
- name: Typecheck
run: |
yarn tsc --project tsconfig.json --noEmit
yarn tsc --project parser/tsconfig.json --noEmit
yarn tsc --project example/tsconfig.json --noEmit
yarn tsc --project WebExample/tsconfig.json --noEmit
- name: Lint
run: yarn lint:root
run: yarn lint

- name: Test
run: yarn test
36 changes: 0 additions & 36 deletions .github/workflows/static-checks-subdirectories.yml

This file was deleted.

0 comments on commit 6efdffb

Please sign in to comment.