Skip to content

build(deps): bump github/codeql-action from 3.25.15 to 3.26.2 #78

build(deps): bump github/codeql-action from 3.25.15 to 3.26.2

build(deps): bump github/codeql-action from 3.25.15 to 3.26.2 #78

Workflow file for this run

name: Build + test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Harden Runner
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g npm@latest
- run: bash ci/build-and-test.sh
shell: bash
env:
NODE_VERSION: ${{ matrix.node-version }}
FORCE_COLOR: true