File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 1
1
name : Close Inactive Issues
2
+
2
3
on :
3
4
schedule :
4
5
- cron : " 30 1 * * *"
6
+
5
7
jobs :
6
8
close-issues :
9
+ name : Close Issue
10
+
7
11
runs-on : ubuntu-latest
12
+
8
13
steps :
9
14
- uses : actions/stale@v3
10
15
with :
Original file line number Diff line number Diff line change 1
1
name : CodeQL Analysis
2
+
2
3
on :
3
4
push :
4
5
paths :
5
6
- source
6
7
pull_request :
7
8
paths :
8
9
- source
10
+
9
11
jobs :
10
12
main :
11
13
name : Main
14
+
12
15
runs-on : ubuntu-latest
16
+
13
17
strategy :
14
18
fail-fast : false
15
19
matrix :
16
20
language :
17
21
- javascript
22
+
18
23
steps :
19
24
- name : Checkout Repository
20
25
uses : actions/checkout@v2
26
+
21
27
- name : Initialize CodeQL
22
28
uses : github/codeql-action/init@v1
23
29
with :
24
30
languages : ${{ matrix.language }}
31
+
25
32
- name : Autobuild
26
33
uses : github/codeql-action/autobuild@v1
34
+
27
35
- name : Perform CodeQL Analysis
28
36
uses : github/codeql-action/analyze@v1
Original file line number Diff line number Diff line change 1
1
name : Pre-Compile and Lint
2
+
2
3
on :
3
4
- push
4
5
- pull_request
6
+
5
7
jobs :
6
8
main :
7
9
name : Main
10
+
8
11
runs-on : ubuntu-latest
12
+
9
13
steps :
10
14
- name : Checkout
11
15
uses : actions/checkout@v2
16
+
12
17
- name : Setup Node
13
18
uses : actions/setup-node@v1
14
19
with :
15
20
node-version : 12
16
21
registry-url : https://registry.npmjs.org
22
+
17
23
- name : Install Dependencies
18
24
run : npm install
25
+
19
26
- name : Compile Source
20
27
run : npm run compile
You can’t perform that action at this time.
0 commit comments