Skip to content

chore: bump markdownlint-cli2 from 0.21.0 to 0.23.2 #109

chore: bump markdownlint-cli2 from 0.21.0 to 0.23.2

chore: bump markdownlint-cli2 from 0.21.0 to 0.23.2 #109

name: Frontend Quality
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
frontend-quality:
name: frontend-quality
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install frontend dependencies
run: npm ci
- name: Run frontend linting
run: npm run lint
- name: Run frontend unit tests with coverage
run: npm run test:coverage
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Run frontend end-to-end tests
run: npm run test:e2e
- name: Build frontend
run: npm run build