Skip to content

Commit

Permalink
ci: add check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iseki0 committed Jan 31, 2025
1 parent 6641abe commit 36d9333
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: check

on:
pull_request:
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: latest
registry-url: https://registry.npmjs.org
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm lint
2 changes: 1 addition & 1 deletion src/components/settings/settings-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { useOnline } from '@uiw/react-use-online'

import { useChatModel, useEmbedModel } from '../../hooks/use-model'
import { useListModels } from '../../hooks/xsai/use-list-models'
import { DebouncedTextField } from '../debounced-textfield.tsx'
import * as Sheet from '../ui/sheet'
import {DebouncedTextField} from "../debounced-textfield.tsx";

export const SettingsChat = () => {
const [chatModel, setChatModel] = useChatModel()
Expand Down
2 changes: 1 addition & 1 deletion src/db/generated/meta/0000_snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@
"internal": {
"indexes": {}
}
}
}
2 changes: 1 addition & 1 deletion src/db/generated/meta/_journal.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
"breakpoints": true
}
]
}
}

0 comments on commit 36d9333

Please sign in to comment.