-
Notifications
You must be signed in to change notification settings - Fork 688
47 lines (38 loc) · 1.23 KB
/
codeql.yml
File metadata and controls
47 lines (38 loc) · 1.23 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
name: 'Code quality'
on:
push:
branches: ['develop']
schedule:
- cron: '32 13 * * 0'
permissions:
contents: read
jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'blacksmith-4vcpu-ubuntu-2204' }}
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@20cf305ff2072d973412fa9b1e3a4f227bda3c76
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
- name: Initialize CodeQL
uses: github/codeql-action/init@b126facd4e5d140dbdf5202489ec4a70ff75ce5c
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@b126facd4e5d140dbdf5202489ec4a70ff75ce5c
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@b126facd4e5d140dbdf5202489ec4a70ff75ce5c
with:
category: '/language:${{ matrix.language }}'