Skip to content

Commit

Permalink
ci: add check (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
iseki0 authored Jan 31, 2025
1 parent 22afd8a commit bbdb86c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: check

on:
pull_request:
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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
- 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 bbdb86c

Please sign in to comment.