Skip to content

Bump actions/checkout from 4 to 5 #2

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #2

Workflow file for this run

name: CodeQL
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "25 3 * * 1" # weekly
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install deps & build (for better analysis)
run: |
npm ci
npm run build --if-present || true
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript-typescript
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3