Skip to content

Commit

Permalink
ci(node): removed path filter and set tests to run each time
Browse files Browse the repository at this point in the history
  • Loading branch information
DarrellRichards committed Sep 21, 2020
1 parent dadee4e commit 76d01f3
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 76d01f3

Please sign in to comment.