deps: bump the npm_and_yarn group in /src/ClientApp with 2 updates #87
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: 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 |