Skip to content

Commit

Permalink
Merge pull request #233 from solarwinds/NH-66481
Browse files Browse the repository at this point in the history
CodeQL
  • Loading branch information
raphael-theriault-swi authored Feb 7, 2024
2 parents d83310d + 010e89c commit c3ac1fe
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
paths-ignore:
- examples
- "**/*.test.ts"
- "**/*.test.js"
60 changes: 60 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CodeQL

on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 1"

jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write

strategy:
fail-fast: false
matrix:
language:
- javascript-typescript
# - c-cpp # Compilation method not supported at the moment

steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack enable

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
config-file: ./.github/codeql.yml
languages: ${{ matrix.language }}

- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-
- uses: actions/cache@v4
with:
path: |
~/.zig-build
~/.cache/zig
key: zig-${{ hashFiles('yarn.lock') }}
restore-keys: |
zig-
- run: yarn install --immutable
- run: yarn build

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

0 comments on commit c3ac1fe

Please sign in to comment.