Skip to content

Commit

Permalink
1st release
Browse files Browse the repository at this point in the history
  • Loading branch information
angelalvaigle committed Dec 4, 2024
1 parent 68169f6 commit 478a7f4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,26 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
# Copiar errors, middleware y utils a cada servicio si es necesario
- run: cp -R utils/ users/authservice/
- run: cp -R errors/ questionservice/
- run: cp -R middleware/ questionservice/
- run: cp -R utils/ questionservice/
#- run: cp -R errors/ statservice/
- run: cp -R middleware/ statservice/
#- run: cp -R utils/ statservice/
# Instalar dependencias
- run: npm --prefix users/authservice ci
- run: npm --prefix users/userservice ci
- run: npm --prefix questionservice ci
- run: npm --prefix statservice ci
- run: npm --prefix gatewayservice ci
- run: npm --prefix webapp ci
# Ejecutar tests
- run: npm --prefix users/authservice test -- --coverage
- run: npm --prefix users/userservice test -- --coverage
- run: npm --prefix questionservice test -- --coverage
- run: npm --prefix statservice test -- --coverage
- run: npm --prefix gatewayservice test -- --coverage
- run: npm --prefix webapp test -- --coverage
- name: Analyze with SonarCloud
Expand Down

0 comments on commit 478a7f4

Please sign in to comment.