[Multichain] fix: Use chain-specific addresses for safe creation [SW-261] #3541
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: Smoke tests | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 30 | |
name: Cypress Smoke tests | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [1, 2, 3, 4, 5] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/cypress | |
with: | |
secrets: ${{ toJSON(secrets) }} | |
spec: cypress/e2e/smoke/*.cy.js | |
group: 'Smoke tests' | |
tag: 'smoke' |