Skip to content

Commit 1d56083

Browse files
authored
Merge pull request #156 from prisma-idb/fix-ci-2
fix: ci workflows
2 parents 53fd5cf + d57ca94 commit 1d56083

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
git config user.name "github-actions[bot]"
4242
4343
- name: Prepare release
44-
run: pnpm release:prepare --no-git-checks
44+
run: pnpm release:prepare
4545
env:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747

apps/pidb-kanban-example/playwright.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/// <reference types="node" />
2+
13
import { defineConfig } from "@playwright/test";
24

35
export default defineConfig({
@@ -7,4 +9,5 @@ export default defineConfig({
79
reporter: "html",
810
fullyParallel: true,
911
workers: process.env.CI ? 1 : undefined,
12+
retries: 2, // Since these are flaky sync tests
1013
});

0 commit comments

Comments
 (0)