Skip to content

chore(deps): bump esbuild, typescript-eslint, @types/node, fast-uri and GitHub Actions #39

chore(deps): bump esbuild, typescript-eslint, @types/node, fast-uri and GitHub Actions

chore(deps): bump esbuild, typescript-eslint, @types/node, fast-uri and GitHub Actions #39

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run typecheck
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
# build explicitly: contributors with ignore-scripts set never run pretest
- run: npm run build
- run: npm test