File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
dev-packages/e2e-tests/test-applications Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -1156,6 +1156,13 @@ jobs:
1156
1156
- false
1157
1157
label :
1158
1158
- false
1159
+ include :
1160
+ - test-application : ' create-remix-app'
1161
+ build-command : ' test:build-sourcemaps'
1162
+ label : ' create-remix-app (sourcemaps)'
1163
+ - test-application : ' create-remix-app-legacy'
1164
+ build-command : ' test:build-sourcemaps'
1165
+ label : ' create-remix-app-legacy (sourcemaps)'
1159
1166
1160
1167
steps :
1161
1168
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"sideEffects" : false ,
4
4
"scripts" : {
5
- "build" : " remix build --sourcemap && ./upload-sourcemaps.sh" ,
5
+ "build" : " remix build --sourcemap" ,
6
+ "upload-sourcemaps" : " ./upload-sourcemaps.sh" ,
6
7
"dev" : " remix dev" ,
7
8
"start" : " remix-serve build" ,
8
9
"typecheck" : " tsc" ,
9
10
"clean" : " npx rimraf node_modules pnpm-lock.yaml" ,
10
11
"test:build" : " pnpm install && npx playwright install && pnpm build" ,
12
+ "test:build-sourcemaps" : " pnpm install && npx playwright install && pnpm build && pnpm upload-sourcemaps" ,
11
13
"test:assert" : " pnpm playwright test"
12
14
},
13
15
"dependencies" : {
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"sideEffects" : false ,
4
4
"scripts" : {
5
- "build" : " remix build --sourcemap && ./upload-sourcemaps.sh" ,
5
+ "build" : " remix build --sourcemap" ,
6
+ "upload-sourcemaps" : " ./upload-sourcemaps.sh" ,
6
7
"dev" : " remix dev" ,
7
8
"start" : " NODE_OPTIONS='--require=./instrument.server.cjs' remix-serve build" ,
8
9
"typecheck" : " tsc" ,
9
10
"clean" : " npx rimraf node_modules pnpm-lock.yaml" ,
10
11
"test:build" : " pnpm install && npx playwright install && pnpm build" ,
12
+ "test:build-sourcemaps" : " pnpm install && npx playwright install && pnpm build && pnpm upload-sourcemaps" ,
11
13
"test:assert" : " pnpm playwright test"
12
14
},
13
15
"dependencies" : {
You can’t perform that action at this time.
0 commit comments