blob: 57131a833749a91205d16a1c32efcc3bb668cc0e (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
name: CodeQL
on:
push:
branches:
- master
# The branches below must be a subset of the branches above
pull_request:
branches:
- master
schedule:
- cron: '0 11 * * *'
# | | | | |
# | | | | |____ day of the week (0 - 6 or SUN-SAT)
# | | | |____ month (1 - 12 or JAN-DEC)
# | | |____ day of the month (1 - 31)
# | |____ hour (0 - 23)
# |____ minute (0 - 59)
jobs:
analyze:
runs-on: ubuntu-20.04
name: Analyze
# The maximum number of minutes to let a workflow run
# before GitHub automatically cancels it. Default: 360
timeout-minutes: 30
strategy:
# When set to true, GitHub cancels
# all in-progress jobs if any matrix job fails.
fail-fast: false
matrix:
language:
- javascript
permissions:
# required for all workflows
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Build site
run: |
hugo --verbose --source=exampleSite --buildDrafts --buildFuture
env:
HUGO_RESOURCEDIR: '../resources'
HUGO_ENV: development
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
|