-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into fix-dev-merge
- Loading branch information
Showing
125 changed files
with
14,495 additions
and
6,022 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
|
||
- name: Wait for containers to start | ||
run: | | ||
sleep 18 | ||
sleep 100 | ||
docker run \ | ||
--rm \ | ||
--network mercury-project_default \ | ||
|
@@ -41,3 +41,26 @@ jobs: | |
with: | ||
commit_message: Apply formatting | ||
branch: ${{ github.head_ref }} | ||
|
||
cypress: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- uses: isbang/[email protected] | ||
with: | ||
compose-file: "compose.yml" | ||
|
||
- name: Wait for containers to start | ||
run: | | ||
sleep 100 | ||
docker run \ | ||
--rm \ | ||
--network mercury-project_default \ | ||
alpine/curl -o /dev/null --retry 3 --retry-connrefused backend:5000 | ||
- name: Run Cypress Tests | ||
run: cd frontend; npm i && npm run cy:run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules/ | ||
node_modules/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
node_modules/ | ||
coverage/ | ||
coverage/ | ||
frontend/.vite/ | ||
keycloak/ | ||
db/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
TOKEN_SECRET=27a0967eed44a78feec1ccd9225343258894288202c0a45a8f93adce6786dbc9ae5a7fc4df716f29eefed7067d9b94fa9f7c2ab7dd7781d36cb22206bf25b886 | ||
LINK_SECRET=ijr2iq34rfeiadsfkjq3ew | ||
|
||
CLIENT_SECRET=fOP43IDxXavjRogZMQWKW1qmJAz5zeEf | ||
NEO4J_USERNAME=neo4j | ||
NEO4J_PASSWORD=password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:18-alpine | ||
FROM node:21-alpine | ||
WORKDIR /home/node/app | ||
COPY *.json . | ||
COPY ./src ./src | ||
|
Oops, something went wrong.