Skip to content

Update README.md

Update README.md #223

Workflow file for this run

name: ci
on: [push]
env:
CI: true
jobs:
build:
name: Test on node ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)