File tree 2 files changed +36
-2
lines changed
2 files changed +36
-2
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
darwin :
@@ -41,13 +47,24 @@ 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 : |
46
61
npm i -g ios-deploy
47
62
npm cit
48
63
env :
49
64
CI : true
50
65
66
+ - uses : github/codeql-action/analyze@v3
67
+
51
68
- uses : codecov/codecov-action@v4
52
69
if : success()
53
70
with :
76
93
node --version
77
94
npm --version
78
95
96
+ - uses : github/codeql-action/init@v3
97
+ with :
98
+ languages : javascript
99
+ queries : security-and-quality
100
+ config : |
101
+ paths-ignore:
102
+ - coverage
103
+ - node_modules
104
+
79
105
- name : npm install and test
80
106
run : |
81
107
npm ci
84
110
env :
85
111
CI : true
86
112
113
+ - uses : github/codeql-action/analyze@v3
114
+
87
115
- uses : codecov/codecov-action@v4
88
116
if : success()
89
117
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