Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Update README.md (#330) #743

Update README.md (#330)

Update README.md (#330) #743

Workflow file for this run

name: Code Coverage
on:
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
- name: npm install
run: npm i
- name: npm test
run: npm t -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2