[Snyk] Upgrade @playwright/test from 1.47.0 to 1.48.2 #820
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: Test Backend | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
concurrency: | |
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Unit Tests | ${{ matrix.test-suite.name }} | |
runs-on: transaction-tools-linux-medium | |
strategy: | |
fail-fast: false | |
matrix: | |
test-suite: | |
- name: API | |
command: api | |
- name: Chain | |
command: chain | |
- name: Notifications | |
command: notifications | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
with: | |
version: 9 | |
- name: Set up Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
cache-dependency-path: | | |
back-end/pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: back-end | |
- name: Run unit tests | |
run: pnpm --filter ${{ matrix.test-suite.command }} test:cov | |
working-directory: back-end | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@968872560f81e7bdde9272853e65f2507c0eca7c # v5.0.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |