Merge pull request #6 from serhatozdursun/certificate-update #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
matrix: | |
language: [ 'javascript', 'typescript' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Build code | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: | | |
if [ -f package-lock.json ]; then | |
npm install | |
elif [ -f yarn.lock ]; then | |
yarn install | |
fi | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |