Skip to content

chore(deps): bump the npm-minor-patch group with 2 updates #82

chore(deps): bump the npm-minor-patch group with 2 updates

chore(deps): bump the npm-minor-patch group with 2 updates #82

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "30 3 * * 3"
workflow_dispatch:
permissions:
contents: read
security-events: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
javascript:
name: CodeQL JavaScript/TypeScript
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: github/codeql-action/init@v4
with:
languages: javascript-typescript
- uses: github/codeql-action/analyze@v4
with:
category: /language:javascript-typescript
cpp:
name: CodeQL C/C++
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- uses: ./.github/actions/setup-native-build
- run: npm ci --ignore-scripts
- name: Build native dependencies outside CodeQL tracing
run: npm run build
- uses: github/codeql-action/init@v4
with:
languages: c-cpp
build-mode: manual
- name: Rebuild first-party native sources for CodeQL
run: |
touch src/native/addon.cc src/native/certificate.cc
npm run build
- uses: github/codeql-action/analyze@v4
with:
category: /language:c-cpp