Skip to content

Refactoring and testing #34

Refactoring and testing

Refactoring and testing #34

Workflow file for this run

name: Frontend Tests
on:
push:
branches: [main, develop]
paths:
- 'web/**'
- '.github/workflows/frontend-tests.yml'
pull_request:
branches: [main, develop]
paths:
- 'web/**'
- '.github/workflows/frontend-tests.yml'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
working-directory: web
run: npm ci
- name: Run linter
working-directory: web
run: npm run lint