Skip to content

Update README.md

Update README.md #36

Workflow file for this run

name: Push to branch checks
on:
push:
branches:
- master
- release/*
- feat/*
- fix/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: npm install, and test
run: |
npm install
npm test
env:
CI: true