We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c1f9a commit d793608Copy full SHA for d793608
3 files changed
.github/workflows/gh-pages.yml
@@ -22,6 +22,21 @@ jobs:
22
with:
23
hugo-version: '0.96.0'
24
extended: true
25
+
26
+ - name: Setup Node
27
+ uses: actions/setup-node@v1
28
+ with:
29
+ node-version: '12.x'
30
31
+ - name: Cache dependencies
32
+ uses: actions/cache@v1
33
34
+ path: ~/.npm
35
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
36
+ restore-keys: |
37
+ ${{ runner.os }}-node-
38
39
+ - run: npm ci
40
- run: hugo
41
env:
42
HUGO_ENV: production
0 commit comments