From 267d95a6019d750f8ee49443d17616cff529414f Mon Sep 17 00:00:00 2001 From: MDLeom <2809763-curben@users.noreply.gitlab.com> Date: Thu, 24 Mar 2022 06:47:53 +0000 Subject: [PATCH] ci(ga): install node deps before build --- .github/workflows/pages.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index ffe0b85..715813b 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -16,7 +16,9 @@ jobs: apk update apk add brotli curl git grep - name: Build - run: npm run build + run: | + npm install + npm run build - name: Compress run: | find . -name "oisd*.txt" -type f -print0 | xargs -0 gzip -f -k -9