Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
PORT=4000

# Hawk API database URL
MONGO_HAWK_DB_URL=mongodb://localhost:55011/hawk
MONGO_HAWK_DB_URL=mongodb://127.0.0.1:55011/hawk

# Events database URL
MONGO_EVENTS_DB_URL=mongodb://localhost:55011/hawk_events
MONGO_EVENTS_DB_URL=mongodb://127.0.0.1:55011/hawk_events

# MongoDB settings
MONGO_RECONNECT_TRIES=60
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
# If pull request was merged then we should check for a package version update
check-version-update:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
# Checkout to target branch
- uses: actions/checkout@v2
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:

bump-version:
needs: check-version-update
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
# Checkout to target branch
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
lint:
name: ESlint
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-to-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
update-from-master:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build:
name: Run Jest tests
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install modules
Expand Down
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/

module.exports = {
testTimeout: 30000,
/**
* The test environment that will be used for testing
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hawk.api",
"version": "1.1.1",
"version": "1.1.2",
"main": "index.ts",
"license": "UNLICENSED",
"scripts": {
Expand Down
Loading