Skip to content

Commit

Permalink
TS tests should not run tsc again
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Jul 1, 2024
1 parent c1ca110 commit a559cb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
run: yarn workspace website typecheck
- name: TypeCheck website - min version - v5.1
run: |
yarn add [email protected] --exact -D -W
yarn add [email protected] --exact -D -W --ignore-scripts
yarn workspace website typecheck
- name: TypeCheck website - max version - Latest
run: |
yarn add typescript@latest --exact -D -W
yarn add typescript@latest --exact -D -W --ignore-scripts
yarn workspace website typecheck
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
run: yarn workspace website typecheck
- name: TypeCheck website - min version - v5.1
run: |
yarn add [email protected] --exact -D -W
yarn add [email protected] --exact -D -W --ignore-scripts
yarn workspace website typecheck
- name: TypeCheck website - max version - Latest
run: |
yarn add typescript@latest --exact -D -W
yarn add typescript@latest --exact -D -W --ignore-scripts
yarn workspace website typecheck

0 comments on commit a559cb2

Please sign in to comment.