This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
CodeQL #281
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: [development] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [development] | |
paths: | |
- 'client/src/**' | |
- 'server/src/**' | |
- '!server/src/generated/**' | |
schedule: | |
- cron: '23 19 * * 0' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
# fail-fast is set to false for multiple languages | |
fail-fast: false | |
matrix: | |
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] | |
language: ['javascript'] | |
steps: | |
# Checkout the repo | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v1 | |
with: | |
languages: ${{ matrix.language }} | |
# If you wish to specify custom queries, you can do so here or in a config file. | |
config-file: ./.github/codeql/codeql-config.yml | |
# Enable debug artifacts | |
debug: true | |
# By default, queries listed here will override any specified in a config file. | |
# Prefix the list here with "+" to use these queries and those in the config file. | |
# queries: ./path/to/local/query, your-org/your-repo/queries@main | |
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | |
# - name: Autobuild | |
# uses: github/codeql-action/autobuild@v1 | |
# This is where CodeQL will run a scan using a default set of queries | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v1 |