Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Do not create last job shorter than overlap size #11

Do not create last job shorter than overlap size

Do not create last job shorter than overlap size #11

Workflow file for this run

name: ESLint
on: pull_request
jobs:
Linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
(cd tests && yarn install --frozen-lockfile)
yarn add eslint-detailed-reporter -D -W
- name: Run checks
run: |
echo "ESLint version: "$(yarn run -s eslint --version)
mkdir -p eslint_report
yarn run eslint . -f node_modules/eslint-detailed-reporter/lib/detailed.js -o ./eslint_report/eslint_checks.html
- name: Upload artifacts
if: failure()
uses: actions/upload-artifact@v3.1.1
with:
name: eslint_report
path: eslint_report