Skip to content

2.7.6

2.7.6 #82

Workflow file for this run

name: Run test and coverage
on: ["push", "pull_request"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: npm install
- name: Run test and coverage
run: npm run test
- name: Send to coveralls
uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}