Modified system prompts and Multiple correct parse logic #157
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: Health Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "dev" ] | |
pull_request: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: | | |
bun install | |
- name: eslint Lint check | |
run: | | |
bun run lint | |
- name: Prettier Check | |
run: | | |
bun run format:check | |
- name: Typechecking | |
run: | | |
bun run tsc | |
- name: Spell Check | |
run: | | |
bun run spell | |
- name: Build | |
run: | | |
bun run build | |
- name: web-ext Lint | |
run: | | |
bun run webext:lint |