Skip to content

ci(deps): bump github/codeql-action from 3 to 4 #24

ci(deps): bump github/codeql-action from 3 to 4

ci(deps): bump github/codeql-action from 3 to 4 #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build and Test (Node ${{ matrix.node }}.x)
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20', '22']
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test
# Least-privilege: read-only test/CI runs. GITHUB_TOKEN gets no write to
# anything. The publish/release flows (where they exist) carry their own
# scoped permissions per-workflow.
permissions:
contents: read