From e15f5c34094e0329290fcdcee51f492559757b29 Mon Sep 17 00:00:00 2001 From: Stephan Strittmatter Date: Thu, 31 Oct 2024 06:39:33 +0000 Subject: [PATCH] fix: use npm ci --- .github/workflows/deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f0bc3c2..c3bdf72 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,6 @@ jobs: build: runs-on: ubuntu-latest env: - NODE_ENV: production VITE_APP_AIRTABLE_API_KEY: ${{ secrets.VITE_APP_AIRTABLE_API_KEY }} VITE_APP_AIRTABLE_BASE: ${{ secrets.VITE_APP_AIRTABLE_BASE }} @@ -21,7 +20,7 @@ jobs: cache: 'npm' - name: 📥 Install dependencies - run: npm install + run: npm ci - name: 🏗️ Build run: npm run build