We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f6f95 commit 032642fCopy full SHA for 032642f
1 file changed
.github/workflows/deployment-production.yml
@@ -15,23 +15,13 @@ jobs:
15
NODE_OPTIONS: --unhandled-rejections=strict
16
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
19
20
- - name: Read .nvmrc
21
- run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
22
- id: nvm
23
-
24
- - name: Use Node.js (.nvmrc)
25
- uses: actions/setup-node@v2
26
- with:
27
- node-version: ${{ steps.nvm.outputs.NVMRC }}
28
29
- - uses: actions/cache@v2
+ - name: Use Node.js
+ uses: actions/setup-node@v4
30
with:
31
- path: ~/.npm
32
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
33
- restore-keys: |
34
- ${{ runner.os }}-node-
+ node-version-file: .nvmrc
+ cache: npm
35
36
- name: Install Dependencies
37
run: npm ci
0 commit comments