Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Update README.md

Update README.md #14

name: Node.js CI
on:
push:
branches: [ main ]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm i
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ github.token }}