Skip to content

build: build on node v22 + v24 #10

build: build on node v22 + v24

build: build on node v22 + v24 #10

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
- feature/*
- bugfix/*
pull_request:
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: ['22', '24']
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npx playwright install
- run: npm run build --workspaces --if-present
- run: npm test --workspaces --if-present
- run: npm run acceptance-test --workspaces --if-present
- run: npm run coverage --workspaces --if-present
- run: npm run performance-test --workspaces --if-present
- run: npm run lint --workspaces --if-present