File tree 2 files changed +27
-4
lines changed
2 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 17
17
18
18
name : Node CI
19
19
20
- on : [push, pull_request]
20
+ on :
21
+ push :
22
+ branches-ignore :
23
+ - ' dependabot/**'
24
+ pull_request :
25
+ branches :
26
+ - ' *'
21
27
22
28
jobs :
23
29
test :
@@ -29,10 +35,10 @@ jobs:
29
35
os : [ubuntu-latest, windows-latest, macos-latest]
30
36
31
37
steps :
32
- - uses : actions/checkout@v2
38
+ - uses : actions/checkout@v4
33
39
34
40
- name : Use Node.js ${{ matrix.node-version }}
35
- uses : actions/setup-node@v1
41
+ uses : actions/setup-node@v4
36
42
with :
37
43
node-version : ${{ matrix.node-version }}
38
44
@@ -41,11 +47,22 @@ jobs:
41
47
node --version
42
48
npm --version
43
49
50
+ - uses : github/codeql-action/init@v3
51
+ with :
52
+ languages : javascript
53
+ queries : security-and-quality
54
+ config : |
55
+ paths-ignore:
56
+ - coverage
57
+ - node_modules
58
+
44
59
- name : npm install and test
45
60
run : npm cit
46
61
env :
47
62
CI : true
48
63
64
+ - uses : github/codeql-action/analyze@v3
65
+
49
66
- uses : codecov/codecov-action@v4
50
67
if : success()
51
68
with :
Original file line number Diff line number Diff line change 17
17
18
18
name : Release Auditing
19
19
20
- on : [push, pull_request]
20
+ on :
21
+ push :
22
+ branches-ignore :
23
+ - ' dependabot/**'
24
+ pull_request :
25
+ branches :
26
+ - ' *'
21
27
22
28
jobs :
23
29
test :
You can’t perform that action at this time.
0 commit comments