feat(Safe Shield): Recipient analysis data fetching #2962
This file contains hidden or 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: Web Unit tests | |
on: | |
pull_request: | |
paths: | |
- apps/web/** | |
push: | |
branches: | |
- main | |
paths: | |
- apps/web/** | |
- packages/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
permissions: | |
contents: read | |
checks: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: ./.github/actions/yarn | |
- name: Annotations and coverage report | |
uses: ArtiomTr/[email protected] | |
with: | |
skip-step: install | |
annotations: failed-tests | |
package-manager: yarn | |
test-script: yarn test:ci | |
working-directory: apps/web | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
NEXT_PUBLIC_IS_OFFICIAL_HOST: true |