diff --git a/renovate.json b/renovate.json index d31d1847c..92e20e79d 100644 --- a/renovate.json +++ b/renovate.json @@ -43,7 +43,12 @@ "description": "Go modules for tools", "matchManagers": ["gomod"], "matchFileNames": ["tools/**/go.mod"], - "groupName": "go-tools" + "groupName": "go-tools", + "postUpgradeTasks": { + "commands": ["make tools-go-mod-tidy"], + "fileFilters": ["tools/**/go.mod", "tools/**/go.sum"], + "executionMode": "branch" + } } ] } diff --git a/ui/playwright.config.ts b/ui/playwright.config.ts index 2af1d6f36..5d8835bba 100644 --- a/ui/playwright.config.ts +++ b/ui/playwright.config.ts @@ -57,6 +57,7 @@ export default defineConfig({ reuseExistingServer: !process.env.CI, }, expect: { + timeout: 10_000, toHaveScreenshot: { animations: "disabled", maxDiffPixelRatio: 0,