From c540be48000d06b0fd68a45eba215ad3b3183c93 Mon Sep 17 00:00:00 2001 From: Angelo Rodrigues Date: Wed, 25 Jan 2023 10:09:14 -0500 Subject: [PATCH] bug: install all dependencies before build --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 44320d0..274888e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -36,7 +36,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18.7.0 - - run: NODE_ENV=production npm i + - run: npm i - run: ENVIRONMENT=production npm run build - name: Upload artifact uses: actions/upload-pages-artifact@v1 -- 2.25.1