Skip to content

Merge pull request #37 from jamestrew/fix-portable-shebangs #60

Merge pull request #37 from jamestrew/fix-portable-shebangs

Merge pull request #37 from jamestrew/fix-portable-shebangs #60

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
name: Run Lint Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: pnpm install
- name: Run ESLint
run: pnpm eslint --config .config/eslint.config.js .
- name: Run Prettier Check
run: pnpm prettier --config .config/.prettierrc.js --check .