[Multichain] Feat: disable adding new chains to safes created from old mastercopy versions [SW-167] #3318
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: Unit tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/yarn | |
- name: Annotations and coverage report | |
uses: ArtiomTr/jest-coverage-report-action@v2 | |
with: | |
skip-step: install | |
annotations: failed-tests | |
package-manager: yarn | |
test-script: yarn test:ci | |
github-token: ${{ secrets.GITHUB_TOKEN }} |