Skip to content

Commit

Permalink
fix(e2e): update ormconfig.ci.json
Browse files Browse the repository at this point in the history
fix(e2e): update ormconfig.ci.json
  • Loading branch information
tsirysndr committed Aug 21, 2024
1 parent 985751a commit 7365dac
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ jobs:
- name: 🔄 E2E Server
run: |
fluentci run --wasm postgres start
pkgx psql --host=localhost -d postgres -U `whoami` -c 'CREATE DATABASE test;'
fluentci run --wasm . server_e2e
44 changes: 22 additions & 22 deletions src/server/ormconfig.ci.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "",
"database": "postgres",
"synchronize": false,
"migrationsRun": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"migrationsDir": "src/migration"
}
}
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "runner",
"password": "",
"database": "test",
"synchronize": false,
"migrationsRun": true,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"migrationsDir": "src/migration"
}
}

0 comments on commit 7365dac

Please sign in to comment.