Skip to content

Commit

Permalink
Update nodejs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomontalbano committed Aug 29, 2019
1 parent 3b229b2 commit 23cb303
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/nodejs.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
run: npm test


artifacts:
coverage:
needs: [test]
runs-on: ubuntu-latest

Expand All @@ -41,6 +41,18 @@ jobs:
name: coverage
path: coverage/lcov-report

stryker:
needs: [test]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Project setup `npm install`
run: npm install

- name: Run `stryker`
run: |
npm install
Expand All @@ -53,7 +65,7 @@ jobs:


publish:
needs: [test]
needs: [test, coverage]
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 23cb303

Please sign in to comment.