File tree Expand file tree Collapse file tree 1 file changed +0
-31
lines changed
Expand file tree Collapse file tree 1 file changed +0
-31
lines changed Original file line number Diff line number Diff line change 4848 if : steps.cache.outputs.cache-hit != 'true'
4949 run : pnpm install
5050
51- audit :
52- name : Audit dependencies
53- runs-on : ubuntu-latest
54- needs : deps
55- steps :
56- - name : Checkout
57- uses : actions/checkout@v4
58-
59- - name : Restore application dependencies
60- uses : actions/cache/restore@v4
61- with :
62- key : ${{ runner.os }}-node-modules-${{ hashFiles('pnpm-lock.yaml') }}
63- path : |
64- node_modules
65- fail-on-cache-miss : true
66-
67- - name : Install pnpm
68- uses : pnpm/action-setup@v3
69- with :
70- version : 9
71-
72- - name : Setup Node.js
73- uses : actions/setup-node@v4
74- with :
75- node-version : 20
76- cache : pnpm
77-
78- - name : Perform dependency audit
79- run : pnpm audit
80-
8151 lint :
8252 name : Lint code
8353 runs-on : ubuntu-latest
11484 runs-on : ubuntu-latest
11585 environment : production
11686 needs :
117- - audit
11887 - lint
11988 steps :
12089 - name : Checkout
You can’t perform that action at this time.
0 commit comments