Skip to content

Commit

Permalink
ci: Add CodeQL analysis (#3700)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Aug 29, 2022
1 parent 52bcc32 commit 29bf39f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,25 @@ jobs:
- name: Run Tests with coverage
run: npm run testonly:cover

codeql:
name: Run CodeQL security scan
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: 'javascript, typescript'

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2

build-npm-dist:
name: Build 'npmDist' artifact
runs-on: ubuntu-latest
Expand Down

0 comments on commit 29bf39f

Please sign in to comment.