Fix error message if training proposal feature vectors are pending #237
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
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 |