Skip to content

Commit

Permalink
feat: release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Mar 20, 2022
1 parent 9a6ee9e commit 37cdb17
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ jobs:

runs-on: ubuntu-18.04

services:
postgres:
image: postgres
env:
POSTGRES_DATABASE: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: root
POSTGRES_ROOT_PASSWORD: root
ports:
- '5433:5432'
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 10

steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion config/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default {
url: Env('DB_URL', ''),
host: Env('DB_HOST', '127.0.0.1'),
port: Env({ type: 'number', name: 'DB_PORT' }, 5433),
database: Env('DB_DATABASE', 'secjs-orm-testing'),
database: Env('DB_DATABASE', 'postgres'),
user: Env('DB_USERNAME', 'postgres'),
password: Env('DB_PASSWORD', 'root'),
},
Expand Down

0 comments on commit 37cdb17

Please sign in to comment.