Skip to content

chore(deps): bump github/codeql-action from 3.30.5 to 3.30.6 (#665) #1419

chore(deps): bump github/codeql-action from 3.30.5 to 3.30.6 (#665)

chore(deps): bump github/codeql-action from 3.30.5 to 3.30.6 (#665) #1419

Workflow file for this run

name: NPM Test
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || (github.ref == 'refs/heads/main' && github.sha) || github.ref }}
cancel-in-progress: true
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
types: [closed, opened, synchronize, reopened]
branches:
- '*'
permissions:
contents: read
jobs:
build:
if: >-
github.event.action != 'closed'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [20, 22, 23, 24]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
env:
CI: true