Skip to content

Improve supply chain configuration (#71) #115

Improve supply chain configuration (#71)

Improve supply chain configuration (#71) #115

Workflow file for this run

name: Node CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x, 26.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: npm ci
run: npm ci
- name: npm build
run: npm run build --if-present
- run: npx playwright install chromium
- name: npm test
run: npm test
env:
CI: true