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 5134bc8 commit 0c741e1Copy full SHA for 0c741e1
.github/workflows/build-site.yml
@@ -14,17 +14,22 @@ jobs:
14
15
runs-on: ubuntu-latest
16
17
- strategy:
18
- matrix:
19
- node-version: ["13.14"]
20
-
21
steps:
22
- uses: actions/checkout@v2
23
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js
24
uses: actions/setup-node@v1
25
with:
26
- node-version: ${{ matrix.node-version }}
27
- - run: npm ci
+ node-version: "13.14"
+
+ - name: Cache dependencies
+ uses: actions/cache@v2
+ with:
+ path: ~/.npm
28
+ key: npm-${{ hashFiles('package-lock.json') }}
29
+ restore-keys: npm-
30
31
+ - name: Install dependencies
32
+ run: npm ci --ignore-scripts
33
- run: npm run check-format
34
- run: npm run build
35
- name: Save build output
0 commit comments