Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Nov 30, 2024
1 parent 350a669 commit ac0d525
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18, 20, 22]
node-version: [18.20.0, 18, 20, 22]
os: [ubuntu-latest]

steps:
Expand Down
4 changes: 2 additions & 2 deletions prepare-database-postgresql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

# read variables from environment
db_host=${POSTGRES_HOST:-}
db_port=${POSTGRES_PORT:-}
db_port=${POSTGRES_PORT:-5432}
db_username=${POSTGRES_USER:-}
db_password=${POSTGRES_PASSWORD:-} # default to empty password
db_password=${POSTGRES_PASSWORD:-postgres} # default to empty password
db_name=${CNPMCORE_DATABASE_NAME:-cnpmcore_unittest}

# prepare PostgreSQL param
Expand Down

0 comments on commit ac0d525

Please sign in to comment.