Skip to content

add more examples to tool prompt #137

add more examples to tool prompt

add more examples to tool prompt #137

name: Lint Pull Request
on:
pull_request:
branches:
- main
jobs:
lint-pull-request:
name: lint pull request
runs-on: ubuntu-latest
steps:
- name: Checkout pull request
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Check format
id: format-check
run: bun check:format
- name: Check types
id: check-types
run: bun check:types
- name: Lint
id: lint-files
run: bun lint