Skip to content

Merge pull request #39 from KingBain/patch-1 #81

Merge pull request #39 from KingBain/patch-1

Merge pull request #39 from KingBain/patch-1 #81

Workflow file for this run

name: Unit Tests
on:
push:
branches: [master]
pull_request:
branches: ['**']
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- name: lint
run: yarn lint
- name: run unit test
run: yarn test
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}