Cambios en el package.json #48
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
name: Build | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
create-bags: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Coverage Badges | |
uses: jaywcjlove/coverage-badges-cli@main | |
with: | |
style: flat | |
source: coverage/coverage-summary.json | |
output: coverage/badges.svg | |
jsonPath: totals.percent_covered | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
backend-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: syg-backend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn clean verify | |
# Mover el reporte de cobertura a la raíz del proyecto | |
# - name: Move coverage report to project root | |
# run: | | |
# mkdir -p coverage | |
# cp -r SYG-bootstrap/target/site/jacoco-aggregate/jacoco.csv coverage/ | |
# cp -r SYG-bootstrap/target/site/jacoco-aggregate/index.html coverage/ | |
# - name: Configurar Git para el commit | |
# run: | | |
# git config --global user.name "AlvaroGlezC" | |
# git config --global user.email "[email protected]" | |
# - name: Hacer commit y push de la cobertura | |
# run: | | |
# git add -f coverage | |
# git commit -m "Agregar reporte de cobertura" | |
# git push | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: SYG-bootstrap/target/site/jacoco-aggregate/jacoco.xml | |
frontend-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: syg-frontend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' # Cambia según tu versión de Node.js | |
- run: npm ci | |
- run: npm test | |
- run: npm run jest-coverage | |
- run: npm i coverage-badges-cli -g | |
- run: coverage-badges --output coverage/badges.svg | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/master' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./coverage | |
# - name: Install dependencies | |
# run: npm install | |
# - name: Run tests | |
# run: npm test | |
# - name: Run coverage | |
# run: npm run coverage | |
# # Si quieres guardar el reporte de cobertura, puedes usar esta sección: | |
# - name: Save coverage report | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: coverage-report | |
# path: coverage/ |