Skip to content

chore(deps): bump the safe-api-dependencies group in /src with 8 updates #19

chore(deps): bump the safe-api-dependencies group in /src with 8 updates

chore(deps): bump the safe-api-dependencies group in /src with 8 updates #19

Workflow file for this run

name: Pull Request Events
on: pull_request
permissions:
contents: write
id-token: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
working-directory: src/ClientApp
jobs:
test-unit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: ⬇️ Set up code
uses: actions/checkout@v4
with:
show-progress: false
- name: ⎔ Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache-dependency-path: src/ClientApp/package.json
- name: 📥 Download dependencies
run: npm ci
- name: 🧪 Run tests
run: npm test