Skip to content

Commit b47b952

Browse files
committed
include pnpm in build-command
1 parent 9e07d7e commit b47b952

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ jobs:
954954
- name: Build E2E app
955955
working-directory: ${{ runner.temp }}/test-application
956956
timeout-minutes: 7
957-
run: pnpm ${{ matrix.build-command || 'test:build' }}
957+
run: ${{ matrix.build-command || 'pnpm test:build' }}
958958

959959
- name: Install Playwright
960960
uses: ./.github/actions/install-playwright
@@ -1075,7 +1075,7 @@ jobs:
10751075
- name: Build E2E app
10761076
working-directory: ${{ runner.temp }}/test-application
10771077
timeout-minutes: 7
1078-
run: pnpm ${{ matrix.build-command || 'test:build' }}
1078+
run: ${{ matrix.build-command || 'pnpm test:build' }}
10791079

10801080
- name: Install Playwright
10811081
uses: ./.github/actions/install-playwright

dev-packages/e2e-tests/test-applications/create-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"sentryTest": {
3232
"variants": [
3333
{
34-
"build-command": "test:build-13",
34+
"build-command": "pnpm test:build-13",
3535
"label": "create-next-app (next@13)"
3636
}
3737
]

dev-packages/e2e-tests/test-applications/create-react-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"sentryTest": {
4848
"variants": [
4949
{
50-
"build-command": "test:build-ts3.8",
50+
"build-command": "pnpm test:build-ts3.8",
5151
"label": "create-react-app (TS 3.8)"
5252
}
5353
]

dev-packages/e2e-tests/test-applications/nextjs-13/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
"sentryTest": {
3333
"optionalVariants": [
3434
{
35-
"build-command": "test:build-canary",
35+
"build-command": "pnpm test:build-canary",
3636
"label": "nextjs-13 (canary)"
3737
},
3838
{
39-
"build-command": "test:build-latest",
39+
"build-command": "pnpm test:build-latest",
4040
"label": "nextjs-13 (latest)"
4141
}
4242
]

dev-packages/e2e-tests/test-applications/nextjs-14/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
"sentryTest": {
3434
"optionalVariants": [
3535
{
36-
"build-command": "test:build-canary",
36+
"build-command": "pnpm test:build-canary",
3737
"label": "nextjs-14 (canary)"
3838
},
3939
{
40-
"build-command": "test:build-latest",
40+
"build-command": "pnpm test:build-latest",
4141
"label": "nextjs-14 (latest)"
4242
}
4343
]

dev-packages/e2e-tests/test-applications/nextjs-15/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@
3737
"sentryTest": {
3838
"optionalVariants": [
3939
{
40-
"build-command": "test:build-canary",
40+
"build-command": "pnpm test:build-canary",
4141
"label": "nextjs-15 (canary)"
4242
},
4343
{
44-
"build-command": "test:build-latest",
44+
"build-command": "pnpm test:build-latest",
4545
"label": "nextjs-15 (latest)"
4646
},
4747
{
48-
"build-command": "test:build-turbo",
48+
"build-command": "pnpm test:build-turbo",
4949
"assert-command": "pnpm test:prod && pnpm test:dev-turbo",
5050
"label": "nextjs-15 (turbo)"
5151
}

dev-packages/e2e-tests/test-applications/nextjs-app-dir/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@
3636
"sentryTest": {
3737
"variants": [
3838
{
39-
"build-command": "test:build-13",
39+
"build-command": "pnpm test:build-13",
4040
"label": "nextjs-app-dir (next@13)"
4141
}
4242
],
4343
"optionalVariants": [
4444
{
45-
"build-command": "test:build-canary",
45+
"build-command": "pnpm test:build-canary",
4646
"label": "nextjs-app-dir (canary)"
4747
},
4848
{
49-
"build-command": "test:build-latest",
49+
"build-command": "pnpm test:build-latest",
5050
"label": "nextjs-app-dir (latest)"
5151
}
5252
]

dev-packages/e2e-tests/test-applications/nextjs-pages-dir/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@
3636
"sentryTest": {
3737
"variants": [
3838
{
39-
"build-command": "test:build-13",
39+
"build-command": "pnpm test:build-13",
4040
"label": "nextjs-pages-dir (next@13)"
4141
}
4242
],
4343
"optionalVariants": [
4444
{
45-
"build-command": "test:build-canary",
45+
"build-command": "pnpm test:build-canary",
4646
"label": "nextjs-pages-dir (canary)"
4747
},
4848
{
49-
"build-command": "test:build-latest",
49+
"build-command": "pnpm test:build-latest",
5050
"label": "nextjs-pages-dir (latest)"
5151
}
5252
]

dev-packages/e2e-tests/test-applications/nextjs-turbo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
"optional": true,
3535
"optionalVariants": [
3636
{
37-
"build-command": "test:build-canary",
37+
"build-command": "pnpm test:build-canary",
3838
"label": "nextjs-turbo (canary)"
3939
},
4040
{
41-
"build-command": "test:build-latest",
41+
"build-command": "pnpm test:build-latest",
4242
"label": "nextjs-turbo (latest)"
4343
}
4444
]

dev-packages/e2e-tests/test-applications/nuxt-3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"sentryTest": {
2828
"optionalVariants": [
2929
{
30-
"build-command": "test:build-canary",
30+
"build-command": "pnpm test:build-canary",
3131
"label": "nuxt-3 (canary)"
3232
}
3333
]

0 commit comments

Comments
 (0)