Skip to content

Update README.md

Update README.md #14

Workflow file for this run

name: build
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node:
- 8
- 10
- 12
- 13
- 14
os:
- macOS-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test
- uses: coverallsapp/github-action@v1.1.0
with:
flag-name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
github-token: ${{ secrets.github_token }}
parallel: true
coverage:
needs: test
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v1.1.0
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true