Skip to content

Modernize 2026

Modernize 2026 #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Unit tests
run: npm run test:unit
- name: Install Playwright Chromium
run: npx playwright install --with-deps chromium
- name: Parity tests
run: npm run test:parity