Skip to content

Commit

Permalink
fix check test
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymczakJ committed Nov 6, 2024
1 parent aca896f commit 7a8e353
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ jobs:
fi
- name: Typecheck library
run: npm run tsc --project tsconfig.json --noEmit
run: npm run typecheck -- --project tsconfig.json

- name: Typecheck parser
run: npm run tsc --project parser/tsconfig.json --noEmit
run: npm run typecheck -- --project parser/tsconfig.json

- name: Typecheck example app
run: npm run tsc --project example/tsconfig.json --noEmit
run: npm run typecheck -- --project example/tsconfig.json

- name: Typecheck WebExample app
run: npm run tsc --project WebExample/tsconfig.json --noEmit
run: npm run typecheck -- --project WebExample/tsconfig.json

- name: Lint
run: npm run lint
Expand Down

0 comments on commit 7a8e353

Please sign in to comment.