diff --git a/.gitea/workflows/DRBv3_tests.yaml b/.gitea/workflows/DRBv3_tests.yaml index 1189a9a..aeefbf6 100644 --- a/.gitea/workflows/DRBv3_tests.yaml +++ b/.gitea/workflows/DRBv3_tests.yaml @@ -1,4 +1,4 @@ -name: DRB Build Tests +name: DRB Tests on: pull_request: @@ -24,8 +24,8 @@ env: EXPECTED_USERNAME: ${{ secrets.EXPECTED_USERNAME }} PDAB_PORT: ${{ vars.PDAB_PORT }} -jobs: - drb_build_and_test: +jobs: + drb_mocha_tests: runs-on: ubuntu-latest services: diff --git a/server/makefile b/server/makefile index ff56654..ab756e6 100644 --- a/server/makefile +++ b/server/makefile @@ -17,9 +17,6 @@ build: run: @echo "Running Docker container..." docker run -d -e NODE_ENV=${NODE_ENV} \ - -e MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME} \ - -e MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD} \ - -e MONGO_INITDB_DATABASE=${MONGO_INITDB_DATABASE} \ -e SERVER_PORT=${SERVER_PORT} \ -e MONGO_URL=${MONGO_URL} \ -e DISCORD_TOKEN=${DISCORD_TOKEN} \