-
-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(*): replace 'pnpm <command>' with 'pnpm run <command>' (#1047)
- Loading branch information
Showing
7 changed files
with
14 additions
and
14 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
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
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
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
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 |
---|---|---|
|
@@ -17,8 +17,8 @@ jobs: | |
node-version: 'lts/*' | ||
cache: 'pnpm' | ||
- run: pnpm install | ||
- run: pnpm build # we don't have any other workflows to test build | ||
- run: pnpm test:spec | ||
- run: pnpm run build # we don't have any other workflows to test build | ||
- run: pnpm run test:spec | ||
|
||
test_matrix: | ||
runs-on: ubuntu-latest | ||
|
@@ -41,7 +41,7 @@ jobs: | |
node-version: 'lts/*' | ||
cache: 'pnpm' | ||
- run: pnpm install | ||
- run: pnpm build # for macro test | ||
- run: pnpm run build # for macro test | ||
- name: Install legacy testing-library | ||
if: ${{ startsWith(matrix.react, '16.') || startsWith(matrix.react, '17.') }} | ||
run: pnpm add -D @testing-library/[email protected] | ||
|
@@ -54,4 +54,4 @@ jobs: | |
- name: Test ${{ matrix.react }} | ||
run: | | ||
pnpm add -D react@${{ matrix.react }} react-dom@${{ matrix.react }} | ||
pnpm test:spec | ||
pnpm run test:spec |
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
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