From 572a906be0fd42a73ead5e51f055415b9477ec1a Mon Sep 17 00:00:00 2001 From: Inrixia Date: Wed, 1 May 2024 18:03:53 +1200 Subject: [PATCH] Ensure npm build fix --- .github/workflows/autoBuildDev.yml | 4 ++-- .github/workflows/autoTest.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autoBuildDev.yml b/.github/workflows/autoBuildDev.yml index 90a5bf5..e8b5a8f 100644 --- a/.github/workflows/autoBuildDev.yml +++ b/.github/workflows/autoBuildDev.yml @@ -14,12 +14,12 @@ jobs: runs-on: ${{ matrix.runs-on }} steps: - uses: actions/checkout@v4 + - name: "Install dependencies" + run: npm install - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: latest - - name: Install dependencies - run: npm install - name: Build run: npm run build-${{ matrix.runs-on }} - name: Upload Artifact diff --git a/.github/workflows/autoTest.yml b/.github/workflows/autoTest.yml index 49ad5d7..22f9d39 100644 --- a/.github/workflows/autoTest.yml +++ b/.github/workflows/autoTest.yml @@ -29,12 +29,12 @@ jobs: steps: - uses: actions/checkout@v2 + - name: "Install dependencies" + run: npm install - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: latest - - name: "Install dependencies" - run: npm install - name: "Build & Sanity Test" run: npm run test-${{ matrix.runs-on }}