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