Skip to content

Cleaning the repo

Cleaning the repo #2

Workflow file for this run

name: Frontend CI
on:
push:
branches: [main, develop]
paths:
- "frontend/**"
pull_request:
branches: [main, develop]
paths:
- "frontend/**"
jobs:
frontend:
name: Frontend CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
working-directory: frontend
run: npm install
- name: Run tests
working-directory: frontend
run: npm test -- --passWithNoTests
- name: Run linter
working-directory: frontend
run: npm run lint
- name: Build
working-directory: frontend
run: npm run build