[Snyk] Security upgrade glob from 7.1.6 to 9.0.0 #87
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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: npm run setup --ci | |
- name: linting | |
run: npm run lint --ci | |
test: | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: npm run setup --ci | |
- name: jest test | |
run: npm run test --ci --parallel | |