chore(deps): bump micromatch from 4.0.4 to 4.0.8 in /examples/koa #314
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: build | |
on: | |
pull_request: | |
branches: | |
- master | |
- release | |
- 2.0 | |
jobs: | |
lint-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull Code | |
uses: actions/checkout@v1 | |
- name: Set up Node.js | |
uses: actions/setup-node@master | |
with: | |
node-version: '12.x' | |
- name: Install Dependencies | |
run: yarn | |
- name: Commit Linter | |
uses: wagoid/commitlint-github-action@v1.2.2 | |
with: | |
configFile: '.commitlintrc.yml' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run ESLinter | |
run: yarn lint | |
- name: Run Tests | |
run: yarn test | |
- name: codecov | |
uses: codecov/codecov-action@v1 |