Skip to content

Update README.md

Update README.md #27

Workflow file for this run

name: Tests
on:
push: {}
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install
run: yarn
- name: test
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
yarn nyc --reporter=lcov --report-dir=./coverage mocha
yarn global add coveralls
cat ./coverage/lcov.info | coveralls