Skip to content

Commit c0e9745

Browse files
Merge pull request #70 from LingyiChen-AI/fix/issue-69-double-encoded-items-and-66-arm64
fix: 拒绝非数组列表字段写入 (#69) + arm64 多架构镜像 (#66)
2 parents 3917896 + dd9969e commit c0e9745

15 files changed

Lines changed: 887 additions & 10 deletions

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17+
- name: Set up QEMU
18+
uses: docker/setup-qemu-action@v3
19+
1720
- name: Set up Docker Buildx
1821
uses: docker/setup-buildx-action@v3
1922

@@ -40,6 +43,7 @@ jobs:
4043
uses: docker/build-push-action@v6
4144
with:
4245
context: .
46+
platforms: linux/amd64,linux/arm64
4347
push: true
4448
tags: ${{ steps.meta.outputs.tags }}
4549
labels: ${{ steps.meta.outputs.labels }}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"build": "next build",
1111
"start": "next start",
1212
"lint": "eslint",
13+
"test": "vitest run",
14+
"test:watch": "vitest",
1315
"type-check": "tsc --noEmit",
1416
"db:generate": "drizzle-kit generate",
1517
"db:generate:pg": "drizzle-kit generate --config drizzle-pg.config.ts",
@@ -74,13 +76,16 @@
7476
"@types/react": "^19",
7577
"@types/react-dom": "^19",
7678
"@types/uuid": "^11.0.0",
79+
"@vitejs/plugin-react": "^6.0.2",
7780
"drizzle-kit": "^0.31.9",
7881
"eslint": "^9",
7982
"eslint-config-next": "16.1.6",
8083
"shadcn": "^3.8.4",
8184
"tailwindcss": "^4",
8285
"tsx": "^4.21.0",
8386
"tw-animate-css": "^1.4.0",
84-
"typescript": "^5"
87+
"typescript": "^5",
88+
"vite-tsconfig-paths": "^6.1.1",
89+
"vitest": "^4.1.8"
8590
}
8691
}

0 commit comments

Comments
 (0)