Skip to content

fix(backend): Fix enable_caching issues when handling PVC creation/de… #342

fix(backend): Fix enable_caching issues when handling PVC creation/de…

fix(backend): Fix enable_caching issues when handling PVC creation/de… #342

Workflow file for this run

name: Frontend Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- 'frontend/**'
- '.github/workflows/frontend.yml'
jobs:
frontend-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Clean npm cache
run: npm cache clean --force
- name: Install dependencies
run: cd ./frontend && npm ci
- name: Run Frontend Tests
run: cd ./frontend && npm run test:ci