File tree Expand file tree Collapse file tree 2 files changed +48
-1
lines changed
Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : npm
4+ directory : /
5+ schedule :
6+ interval : weekly
7+ day : wednesday
8+ cooldown :
9+ default-days : 14
10+ open-pull-requests-limit : 3
11+ target-branch : " main"
12+ versioning-strategy : increase
13+ allow :
14+ - dependency-type : direct
15+ labels :
16+ - " build"
17+ commit-message :
18+ prefix : " build"
19+ include : " scope"
20+ groups :
21+ dev :
22+ dependency-type : " development"
23+ update-types :
24+ - " minor"
25+ - " patch"
26+ prod :
27+ dependency-type : " production"
28+ update-types :
29+ - " patch"
30+
31+ - package-ecosystem : github-actions
32+ directory : /
33+ schedule :
34+ interval : monthly
35+ day : wednesday
36+ cooldown :
37+ default-days : 14
38+ open-pull-requests-limit : 2
39+ target-branch : " main"
40+ labels :
41+ - " build"
42+ commit-message :
43+ prefix : " build"
44+ include : " scope"
Original file line number Diff line number Diff line change 2929 ${{ runner.os }}-${{ matrix.node-version }}-modules
3030 - name : Install Node.js packages
3131 if : ${{ steps.modules-cache.outputs.cache-hit != 'true' }}
32- run : npm install
32+ run : npm ci
33+ - name : Audit packages
34+ run : npm audit --audit-level=high
35+ continue-on-error : true
3336 - name : Lint and test
3437 run : npm test
3538 - name : Confirm integration
You can’t perform that action at this time.
0 commit comments