Skip to content

9.0.0

9.0.0 #41

Workflow file for this run

name: ESLint
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '17'
cache: 'yarn'
# Disable eslint annotations, which are already appended by the build action
- run: |
echo "::remove-matcher owner=eslint-compact::"
echo "::remove-matcher owner=eslint-stylish::"
- name: Install dependencies
run: yarn
# TODO: Remplace this with a github action that parses the output of eslint
# and annotates the files: this step doesn't have all annotations working
# Or, wait for github to fix it.
- name: Lint
run: yarn lint:fail-on-warnings