From 76d01f332fc02266ae3954f954fca40588e5f2e0 Mon Sep 17 00:00:00 2001 From: Darrell Richards Date: Mon, 21 Sep 2020 09:58:28 -0400 Subject: [PATCH] ci(node): removed path filter and set tests to run each time --- .github/workflows/node.js.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index a0b995b2..6c2512ee 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -23,21 +23,12 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - uses: dorny/paths-filter@v2.2.0 - id: filter - with: - filters: | - backend: - - "src/**" - name: Install Packages - if: steps.filter.outputs.backend == "true" run: npm install - name: Create Env File - if: steps.filter.outputs.backend == "true" run: | touch .env echo JWT_KEY="test" >> .env echo JWT_REFRESH_KEY="test" >> .env - name: Backend Tests - if: steps.filter.outputs.backend == 'true' run: npm run test:node