Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(web): add path filters for PRs + job timeouts (#152)

Skip CI for docs-only or non-code PRs. Full suite always runs on push
to main. Includes timeout-minutes on all jobs.

Filtered paths: src/**, e2e/**, public/**, package.json, pnpm-lock.yaml,
tsconfig.json, vitest.config.ts, next.config.ts, tailwind.config.*,
playwright.config.ts, lighthouserc.json, .github/**

authored by

Guido X Jansen and committed by
GitHub
e6c5b9a5 333e8c20

+14
+14
.github/workflows/ci.yml
··· 5 5 branches: [main, develop] 6 6 pull_request: 7 7 branches: [main, develop] 8 + paths: 9 + - 'src/**' 10 + - 'e2e/**' 11 + - 'public/**' 12 + - 'package.json' 13 + - 'pnpm-lock.yaml' 14 + - 'tsconfig.json' 15 + - 'vitest.config.ts' 16 + - 'next.config.ts' 17 + - 'tailwind.config.*' 18 + - 'playwright.config.ts' 19 + - 'lighthouserc.json' 20 + - '.github/workflows/ci.yml' 21 + - '.github/actions/**' 8 22 9 23 concurrency: 10 24 group: ${{ github.workflow }}-${{ github.ref }}