Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add check #4

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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: |
git rev-parse HEAD || true
git status || true
cat /home/runner/work/talk/talk/src/router.ts
- run: pnpm install
- run: pnpm build
- run: pnpm eslint .
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
}
]
}
}
Loading