Skip to content

Improve Issue Templates and Add Lighthouse CI Integration #22

Improve Issue Templates and Add Lighthouse CI Integration

Improve Issue Templates and Add Lighthouse CI Integration #22

Workflow file for this run

name: Lint
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
node-version: 20.18.0
- name: Install dependencies
run: bun install
- name: Validate current commit (last commit) with commitlint
run: bunx commitlint --last --verbose
- name: Lint
run: bun run lint
- name: Format
run: bun run format