Skip to content

chore(deps): bump the safe-dependencies group #50

chore(deps): bump the safe-dependencies group

chore(deps): bump the safe-dependencies group #50

Workflow file for this run

name: Front End Workflow
on:
push:
paths:
- 'src/ClientApp/**'
- '.github/workflows/node.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Unit Testing Job
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/ClientApp
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-lock.json
- name: 📥 Download dependencies
run: npm ci
- name: 🏗 Run build script
run: npm run build:test --if-present
env:
CI: false
- name: 🧪 Run tests
run: npm run test