We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 716b99e commit 9d77a68Copy full SHA for 9d77a68
1 file changed
.github/workflows/lighthouse.yml
@@ -14,6 +14,8 @@ jobs:
14
uses: actions/setup-node@v3
15
with:
16
node-version: 16.x
17
+ cache: 'npm'
18
+ - run: npm ci
19
20
- name: Use Ruby 2.7.3
21
uses: ruby/setup-ruby@v1
@@ -22,19 +24,6 @@ jobs:
22
24
bundler-cache: true
23
25
working-directory: docs
26
- - name: Restore npm cache
- 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-
32
-
33
- - name: Install dependencies
34
- run: |
35
- npm ci
36
- cd docs && rm -rf vendor && cd ..
37
38
- name: Build docs
39
run: npm run build:docs
40
env:
0 commit comments