Skip to content
This repository was archived by the owner on Jul 5, 2026. It is now read-only.

Feature/NONA-17 review frontend #23

Feature/NONA-17 review frontend

Feature/NONA-17 review frontend #23

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run unit and integration tests
run: npm run test:run
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Run e2e tests
run: npm run test:e2e