Skip to content

feat: add lint, format and test workflows for CI #6

feat: add lint, format and test workflows for CI

feat: add lint, format and test workflows for CI #6

Workflow file for this run

name: Lint
on:
push:
branches: [dev]
pull_request:
branches: [main, dev]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: latest
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: pnpm run lint