File tree Expand file tree Collapse file tree 7 files changed +9
-8
lines changed
Expand file tree Collapse file tree 7 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 22PORT = 4000
33
44# Hawk API database URL
5- MONGO_HAWK_DB_URL = mongodb://localhost :55011/hawk
5+ MONGO_HAWK_DB_URL = mongodb://127.0.0.1 :55011/hawk
66
77# Events database URL
8- MONGO_EVENTS_DB_URL = mongodb://localhost :55011/hawk_events
8+ MONGO_EVENTS_DB_URL = mongodb://127.0.0.1 :55011/hawk_events
99
1010# MongoDB settings
1111MONGO_RECONNECT_TRIES = 60
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [pull_request]
55jobs :
66 # If pull request was merged then we should check for a package version update
77 check-version-update :
8- runs-on : ubuntu-latest
8+ runs-on : ubuntu-20.04
99 steps :
1010 # Checkout to target branch
1111 - uses : actions/checkout@v2
3333
3434 bump-version :
3535 needs : check-version-update
36- runs-on : ubuntu-latest
36+ runs-on : ubuntu-20.04
3737 steps :
3838 # Checkout to target branch
3939 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [pull_request]
55jobs :
66 lint :
77 name : ESlint
8- runs-on : ubuntu-latest
8+ runs-on : ubuntu-20.04
99 steps :
1010 - uses : actions/checkout@v2
1111 - name : Use Node.js
Original file line number Diff line number Diff line change 1010jobs :
1111 update-from-master :
1212 if : github.event.pull_request.merged == true
13- runs-on : ubuntu-latest
13+ runs-on : ubuntu-20.04
1414 steps :
1515 - uses : actions/checkout@v2
1616
Original file line number Diff line number Diff line change 66jobs :
77 build :
88 name : Run Jest tests
9- runs-on : ubuntu-latest
9+ runs-on : ubuntu-20.04
1010 steps :
1111 - uses : actions/checkout@v2
1212 - name : Install modules
Original file line number Diff line number Diff line change 44 */
55
66module . exports = {
7+ testTimeout : 30000 ,
78 /**
89 * The test environment that will be used for testing
910 */
Original file line number Diff line number Diff line change 11{
22 "name" : " hawk.api" ,
3- "version" : " 1.1.1 " ,
3+ "version" : " 1.1.2 " ,
44 "main" : " index.ts" ,
55 "license" : " UNLICENSED" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments