Skip to content

Merge pull request #188 from INtiful/refactor/chaeney/KAN-124-scroll-… #441

Merge pull request #188 from INtiful/refactor/chaeney/KAN-124-scroll-…

Merge pull request #188 from INtiful/refactor/chaeney/KAN-124-scroll-… #441

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint