Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:

- name: Install Chromium, Firefox, and WebKit
working-directory: ${{ runner.temp }}/release-example
run: ./node_modules/.bin/playwright install --with-deps chromium firefox webkit
run: node ./node_modules/@playwright/test/cli.js install --with-deps chromium firefox webkit

- name: Exercise the signed bridge in every release browser
working-directory: ${{ runner.temp }}/release-example
Expand Down
2 changes: 1 addition & 1 deletion examples/next-ai-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "vitest run --root ../.. --project next-ai-sdk",
"test:e2e": "playwright test"
"test:e2e": "node ./node_modules/@playwright/test/cli.js test"
},
"dependencies": {
"@ai-sdk/react": "4.0.67",
Expand Down
2 changes: 1 addition & 1 deletion packages/concierge/test/ai-sdk/artifact.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("published artifact boundaries", () => {
"utf8",
));

expect(manifest.version).toBe("0.2.0");
expect(manifest.version).toMatch(/^0\.2\.\d+$/u);
expect(manifest.peerDependencies.ai).toBe("^6.0.0 || ^7.0.0");
expect(manifest.peerDependenciesMeta.ai).toEqual({ optional: true });
expect(manifest.publishConfig).toEqual({ access: "public", tag: "latest" });
Expand Down
Loading