Skip to content

๐Ÿ› ๏ธ [Eslint] Flat config (#56) #154

๐Ÿ› ๏ธ [Eslint] Flat config (#56)

๐Ÿ› ๏ธ [Eslint] Flat config (#56) #154

Workflow file for this run

name: ๐Ÿค– Lint
on: [push]
jobs:
lint:
name: Lint the codebase
runs-on: ubuntu-latest
steps:
- name: ๐Ÿ—ณ๏ธ Checkout repo
uses: actions/checkout@v4
- name: ๐Ÿ”ง Setup Node 20.x
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: ๐Ÿ“ฆ Install dependencies
run: npm ci
- name: ๐ŸŽจ Lint
run: npm run lint
- name: ๐Ÿ’„ Prettier
run: npm run format