Skip to content

Commit 42239bc

Browse files
authored
chore: relock to fix release (#15)
1 parent eeba30c commit 42239bc

File tree

5 files changed

+1594
-1628
lines changed

5 files changed

+1594
-1628
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
ci:
9+
name: CI
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v6
14+
15+
- name: Setup pnpm
16+
uses: pnpm/action-setup@v4
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v6
20+
with:
21+
node-version: "lts/*"
22+
cache: "pnpm"
23+
24+
- name: Install dependencies
25+
run: pnpm install --frozen-lockfile
26+
27+
- name: Build
28+
run: pnpm run build
29+
30+
- name: Typecheck
31+
run: pnpm run typecheck
32+
33+
- name: Lint
34+
run: pnpm run lint

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pydantic/ai-chat-ui",
3-
"packageManager": "pnpm@10.27.0",
3+
"packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc",
44
"private": false,
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)