Skip to content

chore(deps): bump github/codeql-action from 3.24.10 to 3.25.10 #143

chore(deps): bump github/codeql-action from 3.24.10 to 3.25.10

chore(deps): bump github/codeql-action from 3.24.10 to 3.25.10 #143

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- name: 🔐 Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
github.com:443
registry.npmjs.org:443
api.github.com:443
nodejs.org:443
- name: ⚙️ Git Checkout
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: ⚙️ Install Node versions
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node-version }}
- name: ⚙️ Install dependencies
run: npm ci
- name: 👀 Lint files
run: npm run lint
- name: 🧪 Run tests
run: npm run test:ci