-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,14 +108,20 @@ jobs: | |
env: | ||
E2E_TEST: true | ||
- name: TypeCheck website | ||
# TODO: there're some lingering issues with PnP + tsc. Enable tsc in PnP later. | ||
if: matrix.variant == '-st' && matrix.nodeLinker != 'pnp' | ||
working-directory: ../test-website | ||
run: yarn typecheck | ||
- name: TypeCheck website - min version - v5.1 | ||
# TODO: there're some lingering issues with PnP + tsc. Enable tsc in PnP later. | ||
if: matrix.variant == '-st' && matrix.nodeLinker != 'pnp' | ||
working-directory: ../test-website | ||
run: | | ||
yarn add [email protected] --exact | ||
yarn typecheck | ||
- name: TypeCheck website - max version - Latest | ||
# TODO: there're some lingering issues with PnP + tsc. Enable tsc in PnP later. | ||
if: matrix.variant == '-st' && matrix.nodeLinker != 'pnp' | ||
working-directory: ../test-website | ||
run: | | ||
yarn add typescript@latest --exact | ||
|