Add try/catch when checking whether a token is supported by ntt #2033
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- development | |
- staging | |
- production | |
- mainnet | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: "wormhole-connect/package-lock.json" | |
- run: npm ci | |
working-directory: wormhole-connect | |
- run: npm run lint:ci | |
working-directory: wormhole-connect | |
test: | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: "wormhole-connect/package-lock.json" | |
- run: npm ci | |
working-directory: wormhole-connect | |
- run: npm test | |
working-directory: wormhole-connect | |
env: | |
REACT_APP_SOLANA_RPC: ${{ vars.REACT_APP_SOLANA_RPC }} | |
check-sdn-list: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run script | |
run: npm i prettier && npm run checksdn | |
working-directory: wormhole-connect | |
check-token-list: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
tokens: | |
- 'wormhole-connect/src/config/mainnet/wrappedTokens.ts' | |
- 'wormhole-connect/src/config/testnet/wrappedTokens.ts' | |
- uses: actions/setup-node@v4 | |
if: steps.filter.outputs.tokens == 'true' || github.ref == 'refs/heads/development' | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: "wormhole-connect/package-lock.json" | |
- run: npm ci | |
if: steps.filter.outputs.tokens == 'true' || github.ref == 'refs/heads/development' | |
working-directory: wormhole-connect | |
- run: npm run checkForeignAssets | |
if: steps.filter.outputs.tokens == 'true' || github.ref == 'refs/heads/development' | |
working-directory: wormhole-connect | |
build-hosted: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: "wormhole-connect/package-lock.json" | |
- run: npm ci | |
working-directory: wormhole-connect | |
- run: npm run build:hosted | |
working-directory: wormhole-connect | |
build-library: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
cache-dependency-path: "wormhole-connect/package-lock.json" | |
- run: npm ci | |
working-directory: wormhole-connect | |
- run: npm run build:lib | |
working-directory: wormhole-connect |