add more examples to tool prompt #137
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |