Skip to content

Commit

Permalink
CI: fix Mongodb connectivity issue
Browse files Browse the repository at this point in the history
Mongoose couldn't resolve localhost for some reason. The CI
problem was fixed after I used 127.0.0.1 instead of localhost.
  • Loading branch information
Mersho committed May 14, 2024
1 parent c0a893c commit fd767d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
env:
DB_USER: ''
DB_PASS: ''
DB_HOST: 'localhost'
DB_HOST: '127.0.0.1'
DB_PORT: '27017'
DB_NAME: 'lnp2pbot'
run: npm test

0 comments on commit fd767d9

Please sign in to comment.