Change build step to shell script
This commit is contained in:
parent
f59e95fcc8
commit
1098d2fe3c
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -318,7 +318,12 @@ jobs:
|
||||
with:
|
||||
tag: ${{ github.event_name }}
|
||||
working-directory: ${{ matrix.module }}/frontend
|
||||
build: ${{ matrix.module == 'testnet4' && 'npm run config:defaults:mempool' || 'npm run config:defaults:${{ matrix.module }}' }}
|
||||
build: |
|
||||
if [[ "${{ matrix.module }}" == "testnet4" ]]; then
|
||||
npm run config:defaults:mempool
|
||||
else
|
||||
npm run config:defaults:${{ matrix.module }}
|
||||
fi
|
||||
start: npm run start:local-staging
|
||||
wait-on: "http://localhost:4200"
|
||||
wait-on-timeout: 120
|
||||
|
Loading…
x
Reference in New Issue
Block a user