Skip to content

feat: added Github action for lint #2

feat: added Github action for lint

feat: added Github action for lint #2

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm install --package-lock-only
- name: Lint
run: npm run lint