From 5b377c839da78d87457e34e0f9eab14dbc2687f3 Mon Sep 17 00:00:00 2001 From: Andreas Hnida Date: Wed, 17 Apr 2024 07:03:18 +0200 Subject: [PATCH] feat(workflow) add Node.js and PostCSS setup tasks --- .gitea/workflows/pipeline-test.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/pipeline-test.yaml b/.gitea/workflows/pipeline-test.yaml index c87a859..4363255 100644 --- a/.gitea/workflows/pipeline-test.yaml +++ b/.gitea/workflows/pipeline-test.yaml @@ -20,6 +20,16 @@ jobs: with: go-version: '1.20.5' + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + + - name: Install PostCSS + run: | + npm install -g postcss postcss-cli + npm install autoprefixer + - name: Set up Hugo Extended uses: peaceiris/actions-hugo@v2 with: