From 0d1402435676d97aa6eb6688afca26b2c364325d Mon Sep 17 00:00:00 2001 From: Geoff Kendal Date: Wed, 31 Jan 2024 20:55:00 +0000 Subject: [PATCH] gi --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e38a7a2..7a7a60a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,9 +12,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 - - - name: Change working directory - run: cd frontend - name: Use Node.js LTS uses: actions/setup-node@v3 @@ -22,7 +19,9 @@ jobs: node-version: 'lts/*' - name: Install dependencies - run: pwd && npm install + working-directory: frontend + run: pwd && npm ci - name: Build React app + working-directory: frontend run: npm run build