We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d792f7 commit e4671f8Copy full SHA for e4671f8
.github/workflows/deployment.yml
@@ -10,7 +10,7 @@ env:
10
NODE_VERSION: 12.x
11
12
jobs:
13
- verify:
+ release:
14
runs-on: ubuntu-18.04
15
16
steps:
@@ -22,13 +22,14 @@ jobs:
22
with:
23
node-version: ${{ env.NODE_VERSION }}
24
25
- - name: Use cached node_modules
26
- uses: actions/cache@v1
+ - name: Cache Node.js modules
+ uses: actions/cache@v2
27
28
- path: node_modules
29
- key: nodeModules-${{ hashFiles('**/package-lock.json') }}
+ path: ~/.npm
+ key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
30
restore-keys: |
31
- nodeModules-
+ ${{ runner.OS }}-node-
32
+ ${{ runner.OS }}-
33
34
- name: Install dependencies
35
run: npm ci
0 commit comments