Skip to content

ci: add GitHub Actions workflows for project build and linting #3

ci: add GitHub Actions workflows for project build and linting

ci: add GitHub Actions workflows for project build and linting #3

Workflow file for this run

name: Lint
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: pnpm run lint