Bump micromatch from 4.0.5 to 4.0.8 (#133) #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# github action to run checks on PRs and pushes to master | |
name: Checks | |
on: | |
push: | |
branches: | |
- "*" # all branches | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Run tests | |
run: npm test -- --coverage |