From 34aab1577251dd9c8435930cc4f3ae3860d554d8 Mon Sep 17 00:00:00 2001 From: Chris Pymm Date: Mon, 23 Sep 2024 14:36:23 +0100 Subject: [PATCH] ci(tests): remove scss test, add js test removed sass test, as it is redundant - the action it performs has already been done in the pipeline. Add in the runnung of JS tests --- .github/workflows/deploy-production.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index f8db7b8a9..31f0cf841 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -44,16 +44,12 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 - with: - name: mojds-package - path: package - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - name: Test Sass can be compiled - run: npm run test:sass + - name: Run JS tests + run: npm run test:js deploy: runs-on: ubuntu-latest