Skip to content

Commit e866a8f

Browse files
committed
always run this job on development branch
1 parent 8716b4f commit e866a8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,16 @@ jobs:
6565
- 'wormhole-connect/src/config/mainnet/wrappedTokens.ts'
6666
- 'wormhole-connect/src/config/testnet/wrappedTokens.ts'
6767
- uses: actions/setup-node@v4
68-
if: steps.filter.outputs.tokens == 'true'
68+
if: steps.filter.outputs.tokens == 'true' || github.ref == 'refs/heads/development'
6969
with:
7070
node-version: 20
7171
cache: "npm"
7272
cache-dependency-path: "wormhole-connect/package-lock.json"
7373
- run: npm ci
74-
if: steps.filter.outputs.tokens == 'true'
74+
if: steps.filter.outputs.tokens == 'true' || github.ref == 'refs/heads/development'
7575
working-directory: wormhole-connect
7676
- run: npm run checkForeignAssets
77-
if: steps.filter.outputs.tokens == 'true'
77+
if: steps.filter.outputs.tokens == 'true' || github.ref == 'refs/heads/development'
7878
working-directory: wormhole-connect
7979

8080
build-hosted:

0 commit comments

Comments
 (0)