fix(ci): correct playwright config paths and add env example files
Pull Request / unit-tests (pull_request) Successful in 1m1s
Pull Request / acceptance-tests (pull_request) Failing after 30m1s
Pull Request / analyze-bump-type (pull_request) Has been skipped

- Fix testDir path from './src/__tests__/e2e' to './e2e'
- Fix globalSetup path from './src/__tests__/e2e/global.setup' to './e2e/global.setup'
- Create .env.development.example with development database configuration
- Update .gitignore to allow .env.example files to be tracked
This commit is contained in:
2026-04-01 17:35:21 -07:00
parent 42902106e6
commit a3cd46e39a
4 changed files with 79 additions and 3 deletions
+8 -1
View File
@@ -34,7 +34,14 @@ yarn-error.log*
.pnpm-debug.log*
# env files (can opt-in for committing if needed)
.env*
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Allow example env files to be tracked
!.env.example
!.env.development.example
# vercel
.vercel