Skip to content

November 2025 redesign #19

November 2025 redesign

November 2025 redesign #19

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Run linter and style checks
run: npm run check
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run unit tests
run: npm t -- --project=chromium
- name: Run functional tests
run: npm run test:functional
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 5