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 e11f8a1 commit 0aaa560Copy full SHA for 0aaa560
.github/workflows/deploy-s3-sandbox.yaml
@@ -9,16 +9,11 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v3
12
- - run: node --version
13
- - run: npm --version
14
- - name: cache node modules
15
- uses: actions/cache@v1
+ - name: Setup Node.js
+ uses: actions/setup-node@v3
16
with:
17
- path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
18
- key: npm-${{ hashFiles('package-lock.json') }}
19
- restore-keys: |
20
- npm-${{ hashFiles('package-lock.json') }}
21
- npm-
+ node-version: 20
+ cache: 'npm'
22
23
- name: Install dependencies
24
run: npm install
0 commit comments