Skip to content

Commit

Permalink
Set up .env in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
francisli committed Mar 29, 2024
1 parent d36522f commit 0712248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
run: npm run format:check
- name: Run ESLint
run: npm run lint --workspaces
- name: Initialize database, generate Prisma client
run: cd server; npm run test:db:reset
- name: Initialize database, set up .env, generate Prisma client
run: cd server; cp example.env .env; npm run test:db:reset
env:
DATABASE_URL: postgresql://postgres@db/app
- name: Run Tests
Expand Down

0 comments on commit 0712248

Please sign in to comment.