Skip to content

Commit 0aaa560

Browse files
committed
chore: update S3 sandbox deploymet pipeline
1 parent e11f8a1 commit 0aaa560

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/deploy-s3-sandbox.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
12-
- run: node --version
13-
- run: npm --version
14-
- name: cache node modules
15-
uses: actions/cache@v1
12+
- name: Setup Node.js
13+
uses: actions/setup-node@v3
1614
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-
15+
node-version: 20
16+
cache: 'npm'
2217

2318
- name: Install dependencies
2419
run: npm install

0 commit comments

Comments
 (0)