Skip to content

Merge pull request #30 from INtiful/feat/hyuk/KAN-15-Progress-Bar #57

Merge pull request #30 from INtiful/feat/hyuk/KAN-15-Progress-Bar

Merge pull request #30 from INtiful/feat/hyuk/KAN-15-Progress-Bar #57

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