From 4f834afca8006c9809c9448eb50e11909f364bcd Mon Sep 17 00:00:00 2001 From: Minionguyjpro Date: Tue, 2 Jan 2024 19:53:51 +0100 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c41aff8..0f82f89 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,14 @@ jobs: with: # Make sure the release step uses its own credentials. persist-credentials: false - + + - name: Setup Node.js + id: setup-node + uses: actions/setup-node@v4 + with: + node-version-file: .node-version + cache: npm + - run: | npm ci npm run all @@ -29,6 +36,7 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} test: + needs: build runs-on: windows-latest steps: - uses: actions/checkout@v4