Skip to content

Commit a585125

Browse files
committed
fix
1 parent a6a7989 commit a585125

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,10 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Use Node.js
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v3
2323
with:
2424
node-version: ${{ matrix.node }}
25-
- name: Cache Node.js modules
26-
uses: actions/cache@v2
27-
with:
28-
path: ~/.npm
29-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
30-
restore-keys: |
31-
${{ runner.os }}-node-
25+
cache: 'npm'
3226
- run: npm ci
3327
- run: npm run coverage
3428
- run: bash <(curl -s https://codecov.io/bash)

.github/workflows/release-automated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
persist-credentials: false
1313
- name: Setup Node
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v3
1515
with:
1616
node-version: 18
1717
cache: 'npm'

0 commit comments

Comments
 (0)