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.
npm
1 parent 2ee0e39 commit 397ff61Copy full SHA for 397ff61
.github/workflows/CI.yml
@@ -15,20 +15,12 @@ jobs:
15
16
steps:
17
- name: Checkout
18
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
19
- name: Use Node.js
20
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v3
21
with:
22
node-version: ${{ matrix.node-version }}
23
- - name: Cache Node.js modules
24
- uses: actions/cache@v2
25
- with:
26
- # npm cache files are stored in `~/.npm` on Linux/macOS
27
- path: ~/.npm
28
- key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
29
- restore-keys: |
30
- ${{ runner.OS }}-node-
31
- ${{ runner.OS }}-
+ cache: 'npm'
32
- name: Install dependencies
33
run: npm ci
34
- name: Install dependencies for integration test
0 commit comments