Generated by Spark: Invalid workflow file: .github/workflows/ci.yml#L1

(Line: 236, Col: 13): Unrecognized named-value: 'secrets'. Located at position 13 within expression: always() && secrets.SLACK_WEBHOOK != '', (Line: 261, Col: 13): Unrecognized named-value: 'secrets'. Located at position 13 within expression: always() && secrets.SLACK_WEBHOOK != ''
also e2e-tests.yml needs work as per previous commit.
This commit is contained in:
2026-01-17 14:20:05 +00:00
committed by GitHub
parent 0d9121d879
commit 08559bf87f
4 changed files with 138 additions and 19 deletions

View File

@@ -7,16 +7,16 @@ export default defineConfig({
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
timeout: 60000,
timeout: 30000,
expect: {
timeout: 15000,
timeout: 10000,
},
use: {
baseURL: 'http://localhost:5000',
trace: 'on-first-retry',
screenshot: 'only-on-failure',
actionTimeout: 15000,
navigationTimeout: 30000,
actionTimeout: 10000,
navigationTimeout: 20000,
},
projects: [
@@ -30,7 +30,7 @@ export default defineConfig({
command: 'npm run dev',
url: 'http://localhost:5000',
reuseExistingServer: !process.env.CI,
timeout: 180000,
timeout: 120000,
stdout: 'pipe',
stderr: 'pipe',
},