Bump jws #173
This file contains hidden or 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 | |
| permissions: | |
| actions: write | |
| contents: read | |
| 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@9b5b0150e399e1f007ee3c27bc156549810a64e3 # v1.33.0 | |
| with: | |
| reporter: github-pr-review | |
| eslint_flags: "packages/node/vrdt-common/src/**/*.ts packages/node/vro-language-server/src/**/*.ts extension/src/**/*.ts " |