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 48
48
if : steps.cache.outputs.cache-hit != 'true'
49
49
run : pnpm install
50
50
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
-
81
51
lint :
82
52
name : Lint code
83
53
runs-on : ubuntu-latest
114
84
runs-on : ubuntu-latest
115
85
environment : production
116
86
needs :
117
- - audit
118
87
- lint
119
88
steps :
120
89
- name : Checkout
You can’t perform that action at this time.
0 commit comments