Made LabelBOT's popup dashed line opacity unconfigurable #314
Workflow file for this run
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 JS | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '.github/workflows/lint-js.yml' | |
| - 'resources/assets/**' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/lint-js.yml' | |
| - 'resources/assets/**' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| jobs: | |
| lint-js: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set registry authentication token | |
| run: echo "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" >> .npmrc | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run ESLint | |
| run: npm run lint |