Skip to content

🐛 [Labeler] Fix comma typo #140

🐛 [Labeler] Fix comma typo

🐛 [Labeler] Fix comma typo #140

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 to install with private scope
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Prettier
run: npm run format