Skip to content

wrap sac match logic in try catch to gracefully fall through #1746

wrap sac match logic in try catch to gracefully fall through

wrap sac match logic in try catch to gracefully fall through #1746

Workflow file for this run

name: Run Tests
env:
INDEXER_URL: ${{ secrets.INDEXER_URL }}
on: [pull_request]
concurrency:
group: ${{ github.workflow }}
jobs:
test-ci:
name: test
timeout-minutes: 20
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: npm install -g yarn && yarn
- run: npx playwright install --with-deps chromium
- run: yarn setup
- run: yarn build:freighter-api
- run: yarn build:extension
- run: yarn test:ci
- run: ${{ github.base_ref == 'master' && 'IS_INTEGRATION_MODE=true' || '' }} yarn test:e2e
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: extension/test-results/
retention-days: 5