Skip to content

Supply chain improvements #514

Supply chain improvements

Supply chain improvements #514

Workflow file for this run

name: Node CI
permissions:
contents: read
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version: 26
cache: npm
- name: npm ci, build, and test
run: |
npm ci
npm run build
npx playwright install chromium
npm test
env:
CI: true