Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore: update README.md #8

chore: update README.md

chore: update README.md #8

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Prettier check
run: npm run format