mirror of https://github.com/wg-easy/wg-easy
committed by
GitHub
1 changed files with 41 additions and 0 deletions
@ -0,0 +1,41 @@ |
|||
name: "CodeQL" |
|||
|
|||
on: |
|||
push: |
|||
branches: [ "main" ] |
|||
pull_request: |
|||
branches: [ "main" ] |
|||
schedule: |
|||
- cron: '*/5 * * * *' |
|||
|
|||
jobs: |
|||
analyze: |
|||
name: Analyze |
|||
runs-on: ubuntu-latest |
|||
timeout-minutes: 360 |
|||
permissions: |
|||
actions: read |
|||
contents: read |
|||
security-events: write |
|||
|
|||
strategy: |
|||
fail-fast: false |
|||
matrix: |
|||
language: [ 'javascript-typescript' ] |
|||
|
|||
steps: |
|||
- name: Checkout repository |
|||
uses: actions/checkout@main |
|||
|
|||
- name: Initialize CodeQL |
|||
uses: github/codeql-action/init@main |
|||
with: |
|||
languages: ${{ matrix.language }} |
|||
|
|||
- name: Autobuild |
|||
uses: github/codeql-action/autobuild@main |
|||
|
|||
- name: Perform CodeQL Analysis |
|||
uses: github/codeql-action/analyze@main |
|||
with: |
|||
category: "/language:${{matrix.language}}" |
Loading…
Reference in new issue