Skip to content

Bump the dev-dependencies group across 1 directory with 7 updates #20

Bump the dev-dependencies group across 1 directory with 7 updates

Bump the dev-dependencies group across 1 directory with 7 updates #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
# Least privilege: this workflow only needs to read the repo.
permissions:
contents: read
# Cancel superseded runs for the same ref to save CI minutes.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
# Actions are pinned to commit SHAs (supply-chain hardening); the
# trailing comment records the human-readable version. v6 runs on the
# Node 24 action runtime, clearing the Node 20 deprecation warning.
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: npm
- run: npm ci
- name: Validate manifest.json parses
run: node -e "JSON.parse(require('fs').readFileSync('manifest.json','utf8'))"
- run: npm run lint
- run: npm run format:check
- run: npm run typecheck
- run: npm run coverage
- run: npm run build