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 28, 2019
1 parent abdfa3a commit a372b6a
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/nodejs.yml
Expand Up @@ -3,20 +3,20 @@ name: Node CI
on: [push]

jobs:
build:
test:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node: [8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ matrix.node }}
- name: Project setup `npm install && npm run build`
run: |
npm install
Expand All @@ -41,3 +41,17 @@ jobs:
with:
name: stryker
path: reports/mutation/html

publish:
runs-on: ubuntu-latest

strategy:
matrix:
node: [10.x]

step:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

0 comments on commit a372b6a

Please sign in to comment.