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 e73ab2c commit 6672f4fCopy full SHA for 6672f4f
.github/workflows/ci.yml
@@ -21,6 +21,17 @@ jobs:
21
with:
22
hugo-version: '0.110.0'
23
# extended: true
24
+
25
+ - name: Setup Node
26
+ uses: actions/setup-node@v3
27
+ with:
28
+ node-version: '18'
29
+ cache: 'npm'
30
+ # The action defaults to search for the dependency file (package-lock.json,
31
+ # npm-shrinkwrap.json or yarn.lock) in the repository root, and uses its
32
+ # hash as a part of the cache key.
33
+ # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-data
34
+ cache-dependency-path: '**/package-lock.json'
35
36
- name: Build
37
run: hugo --minify
0 commit comments