Skip to content

Commit c3584f1

Browse files
committed
ci: make commands compatible with pnpm v10
1 parent 12624f5 commit c3584f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-and-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: pnpm install --frozen-lockfile
4848

4949
- name: test
50-
run: pnpm test -- --watch=false --browsers=ChromeHeadless
50+
run: pnpm test --watch=false --browsers=ChromeHeadless
5151

5252
- name: Upload coverage reports to Codecov
5353
uses: codecov/codecov-action@v5

.github/workflows/verify-build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: pnpm install --frozen-lockfile
6262

6363
- name: test
64-
run: pnpm test -- --watch=false --browsers=ChromeHeadless
64+
run: pnpm test --watch=false --browsers=ChromeHeadless
6565

6666
- name: Upload coverage reports to Codecov
6767
uses: codecov/codecov-action@v5
@@ -85,7 +85,7 @@ jobs:
8585
run: pnpm install --frozen-lockfile
8686

8787
- name: test
88-
run: pnpm test -- --watch=false --browsers=FirefoxHeadless
88+
run: pnpm test --watch=false --browsers=FirefoxHeadless
8989

9090
test-safari:
9191
runs-on: macos-14
@@ -104,7 +104,7 @@ jobs:
104104
run: pnpm install --frozen-lockfile
105105

106106
- name: test
107-
run: pnpm test -- --watch=false --browsers=SafariNative
107+
run: pnpm test --watch=false --browsers=SafariNative
108108

109109
prettier:
110110
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)