Merge pull request #446 from bcgsc/bugfix/DEVSU-2637-unauthorized-tok… #1909
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 | |
| on: | |
| - push | |
| - workflow_dispatch | |
| jobs: | |
| eslint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '16' | |
| - run: npm ci | |
| - name: Run ESLint | |
| run: npx eslint . --quiet |