Multiple LLM Answers Chat Bubble #51
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: "CI: Check Lint and Format TS & TSX Code" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**/*.ts' | |
- '**/*.tsx' | |
- '**/*.js' | |
- '**/*.jsx' | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
paths: | |
- '**/*.ts' | |
- '**/*.tsx' | |
- '**/*.js' | |
- '**/*.jsx' | |
jobs: | |
check-lint-format: | |
runs-on: ubuntu-latest | |
name: "Job: Check Lint and Format TS & TSX Code" | |
steps: | |
# Checkout to repository | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Setup Biome | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
- name: Run Biome | |
run: biome ci ./src/frontend |