Compare commits
12 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
6632d370ea | 2 days ago |
|
|
ff0bafa2b5 | 3 days ago |
|
|
b99055d793 | 7 days ago |
|
|
f80e0ace51 | 7 days ago |
|
|
a4bc6cde7e | 2 weeks ago |
|
|
83ebb81e64 | 2 weeks ago |
|
|
9586bd4603 | 2 weeks ago |
|
|
72cd565084 | 3 weeks ago |
|
|
b7a46cd9ec | 3 weeks ago |
|
|
7430fdb955 | 3 weeks ago |
|
|
618b42c7b3 | 3 weeks ago |
|
|
3fcc89cfff | 3 weeks ago |
@ -0,0 +1,45 @@
|
||||
name: codeql
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
- 'releases/v*'
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
env:
|
||||
NODE_VERSION: "24"
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
-
|
||||
name: Enable corepack
|
||||
run: |
|
||||
corepack enable
|
||||
yarn --version
|
||||
-
|
||||
name: Set up Node
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
-
|
||||
name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v4
|
||||
with:
|
||||
languages: javascript-typescript
|
||||
build-mode: none
|
||||
-
|
||||
name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v4
|
||||
with:
|
||||
category: "/language:javascript-typescript"
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue