Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
1fe529a
Fixed build workflow
hugo-fdez May 6, 2025
14b01e9
Merge branch 'master' of https://github.com/Arquisoft/wichat_es2a int…
DavidCG-27 May 6, 2025
85545d9
Merge branch 'Corrections' into Fix-Deployment
hugo-fdez May 6, 2025
0172906
Fixed mathgame
hugo-fdez May 7, 2025
b29a3d6
Merge remote-tracking branch 'origin/master' into Fix-Deployment
hugo-fdez May 7, 2025
9f0eb6f
Remove warnings in global ranking
softwaremarcos May 7, 2025
8c60da8
Remove warnings in score
softwaremarcos May 7, 2025
36a91e7
Remove warnings group chat
softwaremarcos May 7, 2025
b75c58d
Remove warnings login
softwaremarcos May 7, 2025
0671551
Fix warnings
NataliaBlancoAgudin May 7, 2025
8434f22
Remove warnings in profile
softwaremarcos May 7, 2025
62a83c4
Remove warnings in user groups
softwaremarcos May 7, 2025
34e3558
Fix warnings (friendlist)
NataliaBlancoAgudin May 7, 2025
e53d4cb
Remove warnings in private chat
softwaremarcos May 7, 2025
5131339
Fix warning (game panel)
NataliaBlancoAgudin May 7, 2025
388aa7c
Merge branch 'Corrections' into Fix-Deployment
NataliaBlancoAgudin May 7, 2025
dd5ac0e
Fix warnings (frindlist)
NataliaBlancoAgudin May 7, 2025
c2bfe8d
Fix errors (login, profile)
NataliaBlancoAgudin May 7, 2025
776c059
Change username and password for tests e2e
softwaremarcos May 7, 2025
092e778
Merge branch 'master' into Fix-Deployment
softwaremarcos May 7, 2025
978ee9f
Try to fix bug
softwaremarcos May 7, 2025
34a1c1f
Try to fix bug in tests
softwaremarcos May 7, 2025
13f297c
Fig some bugs
NataliaBlancoAgudin May 7, 2025
0984a8b
Fix other bugs...
NataliaBlancoAgudin May 7, 2025
8c860f8
Fix others...
NataliaBlancoAgudin May 7, 2025
a49f9de
Increment timeout button
softwaremarcos May 7, 2025
89511c1
Fix other bugs
softwaremarcos May 7, 2025
c27bd95
Try more timeout
softwaremarcos May 7, 2025
b1faccb
Other changes in e2e tests
softwaremarcos May 7, 2025
d677246
Other tests
softwaremarcos May 7, 2025
6847d7c
Modified timeouts
softwaremarcos May 7, 2025
13aeaaa
Add more timeout
softwaremarcos May 7, 2025
5f54292
Fixed? I hope it is.
NataliaBlancoAgudin May 7, 2025
e625fe9
Try changes
softwaremarcos May 7, 2025
96ba2ad
Fix?
NataliaBlancoAgudin May 7, 2025
f2c0020
Merge branch 'Fix-Deployment' of https://github.com/Arquisoft/wichat_…
NataliaBlancoAgudin May 7, 2025
2c90381
last attempt...
NataliaBlancoAgudin May 7, 2025
113ee7c
Other changes
softwaremarcos May 7, 2025
e8e2f8a
Modified tests
softwaremarcos May 7, 2025
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
38 changes: 29 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,34 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
EMPATHY_API_KEY: ${{ secrets.EMPATHY_API_KEY }}

e2e-tests:
needs: [unit-tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm --prefix users/authservice install
- run: npm --prefix users/userservice install
- run: npm --prefix users/groupservice install
- run: npm --prefix llmservice install
- run: npm --prefix mathGame install
- run: npm --prefix apiservice install
- run: npm --prefix gatewayservice install
- run: npm --prefix webapp install
- run: npm --prefix wikidata install
- run: npm --prefix webapp run build
- run: npm --prefix webapp run test:e2e

docker-push-webapp:
name: Push webapp Docker Image to GitHub Packages
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -91,7 +111,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -114,7 +134,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -137,7 +157,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -160,7 +180,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -187,7 +207,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -210,7 +230,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -233,7 +253,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand All @@ -256,7 +276,7 @@ jobs:
permissions:
contents: read
packages: write
needs: []
needs: [e2e-tests]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
Expand Down
Loading