Skip to content

Test against react 19 #28

Test against react 19

Test against react 19 #28

Workflow file for this run

name: standard-ci
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- master
paths-ignore:
- '**.md'
jobs:
test:
strategy:
matrix:
node: [20, 22]
os: [ubuntu-latest, windows-latest, macos-latest]
name: Node v${{ matrix.node }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm test
- name: Lint
run: npm run lint
- name: Build
run: npm run build