Skip to content

feat: add css for printing #266

feat: add css for printing

feat: add css for printing #266

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
- name: Check translation keys
working-directory: web
run: npm run check-translations