File tree Expand file tree Collapse file tree 2 files changed +23
-16
lines changed Expand file tree Collapse file tree 2 files changed +23
-16
lines changed Original file line number Diff line number Diff line change 1+ name : Audit
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ audit :
11+ name : " Audit"
12+ runs-on : ubuntu-latest
13+ strategy :
14+ matrix :
15+ node-version : [22.x]
16+ steps :
17+ - uses : actions/checkout@v4
18+ - name : Use Node.js ${{ matrix.node-version }}
19+ uses : actions/setup-node@v4
20+ with :
21+ node-version : ${{ matrix.node-version }}
22+ - run : npm audit --parseable --production --audit-level=moderate
Original file line number Diff line number Diff line change 1- name : Audit
1+ name : Tests
22
33on :
44 push :
77 pull_request :
88
99jobs :
10- audit :
11- name : " Audit"
12- runs-on : ubuntu-latest
13- strategy :
14- matrix :
15- node-version : [22.x]
16- steps :
17- - uses : actions/checkout@v4
18- - name : Use Node.js ${{ matrix.node-version }}
19- uses : actions/setup-node@v4
20- with :
21- node-version : ${{ matrix.node-version }}
22- - run : npm audit --parseable --production --audit-level=moderate
23-
2410 test :
2511 name : " Tests"
2612 runs-on : ubuntu-latest
3723 env :
3824 CI : true
3925 - run : npm run test
40- - run : npm run test:integration
You can’t perform that action at this time.
0 commit comments