Skip to content

Commit 93d749b

Browse files
committed
fix: add node setup step
hugo modules still need node + autoprefixer + postcss https://www.docsy.dev/docs/get-started/docsy-as-module/installation-prerequisites/#install-postcss
1 parent 064bef7 commit 93d749b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/gh-pages.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ jobs:
2020
. ./.env
2121
echo "::set-output name=HUGO_VERSION::${HUGO_VERSION}"
2222
23+
- name: Setup Yarn
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: '16'
27+
run: |
28+
yarn add -D postcss autoprefixer postcss-cli
29+
2330
- name: Setup Hugo
2431
uses: peaceiris/actions-hugo@v2
2532
with:

0 commit comments

Comments
 (0)