Skip to content

Commit

Permalink
fix(CI): E2E tests now generate the _gen/prisma folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Blckbrry-Pi committed Mar 6, 2024
1 parent cdf58ae commit cb09adb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
with:
deno-version: "1.41.1"

- name: Set Postgres Password to 'postgres'
run: echo "ALTER USER postgres PASSWORD 'postgres';" | sudo psql -u postgres

- name: Run Postgres
run: sudo systemctl start postgresql.service

- name: Build OpenGB
run: deno task cli:install

Expand All @@ -27,5 +33,8 @@ jobs:
- name: Lint
run: cd tests/test_project/ && opengb lint

- name: Generate DB Migrations
run: cd tests/test_project/ && opengb db dev

- name: Run Tests
run: cd tests/test_project/ && opengb test

0 comments on commit cb09adb

Please sign in to comment.