mirror of
https://github.com/mempool/mempool.git
synced 2026-08-18 13:08:44 +02:00
Change build step to shell script
This commit is contained in:
parent
f59e95fcc8
commit
1098d2fe3c
1 changed files with 6 additions and 1 deletions
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…
Add table
Add a link
Reference in a new issue