-
Notifications
You must be signed in to change notification settings - Fork 692
49 lines (40 loc) · 1.45 KB
/
codeql.yml
File metadata and controls
49 lines (40 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: 'Code quality'
on:
push:
branches: ['develop']
schedule:
- cron: '32 13 * * 0'
permissions:
contents: read
jobs:
analyze:
name: Analyze
# Blacksmith is much faster and gives better dashboards than github actions, but we are not being sponsored anymore so had to revert.
# runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'blacksmith-4vcpu-ubuntu-2204' }}
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['javascript']
steps:
- name: Harden Runner
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
- name: Initialize CodeQL
uses: github/codeql-action/init@c618c9bddbf8ce520050acf14e9bb6c220e22931
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@c618c9bddbf8ce520050acf14e9bb6c220e22931
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c618c9bddbf8ce520050acf14e9bb6c220e22931
with:
category: '/language:${{ matrix.language }}'