mirror of
https://github.com/mempool/mempool.git
synced 2025-09-26 18:26:59 +02:00
Change build step to shell script
This commit is contained in:
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
|
||||
|
Reference in New Issue
Block a user