Skip to content

deps: bump the npm_and_yarn group in /src/ClientApp with 2 updates #87

deps: bump the npm_and_yarn group in /src/ClientApp with 2 updates

deps: bump the npm_and_yarn group in /src/ClientApp with 2 updates #87

Workflow file for this run

name: Front End Workflow
on:
push:
paths:
- "src/ClientApp/**"
- ".github/workflows/push.front.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