File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 91
91
path : ./yarn.lock
92
92
- name : Webpack build
93
93
if : inputs.run_webpack == 'true'
94
- run : npm run webpack:prod
94
+ run : npm run bundle:prod || npm run webpack:prod
95
95
shell : bash
96
96
- uses : actions/upload-artifact@v3
97
97
if : inputs.run_webpack == 'true'
Original file line number Diff line number Diff line change @@ -196,8 +196,8 @@ jobs:
196
196
make env_decrypt || true
197
197
env :
198
198
ENV_PASSWORD : ${{ secrets.ENV_PASSWORD }}
199
- - name : Webpack dev build
200
- run : npm run webpack:dev
199
+ - name : Bundle build
200
+ run : npm run bundle:prod || npm run webpack:dev
201
201
shell : bash
202
202
- name : Run cypress e2e tests
203
203
uses : cypress-io/github-action@v6
@@ -292,8 +292,8 @@ jobs:
292
292
make env_decrypt || true
293
293
env :
294
294
ENV_PASSWORD : ${{ secrets.ENV_PASSWORD }}
295
- - name : Webpack dev build
296
- run : npm run webpack:dev
295
+ - name : Bundle build
296
+ run : npm run bundle:prod || npm run webpack:dev
297
297
shell : bash
298
298
- name : Install playwright browsers
299
299
run : yarn playwright install --with-deps chromium
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ jobs:
201
201
touch ./yarn.lock
202
202
yarn install --no-immutable
203
203
yarn info --name-only
204
- yarn run webpack:prod
204
+ yarn run bundle:prod || yarn run webpack:prod
205
205
env :
206
206
COMPONENT : ${{ inputs.component }}
207
207
APP : ${{ steps.get-parameters.outputs.app }}
You can’t perform that action at this time.
0 commit comments