Bump micromatch from 4.0.7 to 4.0.8 #155
Workflow file for this run
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: Lint Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: eslint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- name: Use NPM 8 | |
run: npm install -g [email protected] # lock to 8.3.1 until actions/setup-node#411 and npm/cli#4341 are fixed | |
- name: reviewdog | |
uses: reviewdog/action-eslint@v1 | |
with: | |
reporter: github-pr-review | |
eslint_flags: "packages/node/vrdt-common/src/**/*.ts packages/node/vro-language-server/src/**/*.ts extension/src/**/*.ts " |