Skip to content

Commit

Permalink
Uncommenting some pipeline stages
Browse files Browse the repository at this point in the history
  • Loading branch information
augustocristian authored Mar 13, 2024
1 parent 43ff3de commit 2bfd724
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
#- run: npm --prefix users/authservice ci
#- run: npm --prefix users/userservice ci
#- run: npm --prefix gatewayservice ci
- run: npm --prefix users/authservice ci
- run: npm --prefix users/userservice ci
- run: npm --prefix gatewayservice ci
- run: npm --prefix questionservice ci
- run: npm --prefix webapp ci
#- run: npm --prefix users/authservice test -- --coverage
#- run: npm --prefix users/userservice test -- --coverage
#- run: npm --prefix gatewayservice test -- --coverage
#- run: npm --prefix webapp test -- --coverage
#- name: Analyze with SonarCloud
# uses: sonarsource/sonarcloud-github-action@master
- run: npm --prefix users/authservice test -- --coverage
- run: npm --prefix users/userservice test -- --coverage
- run: npm --prefix gatewayservice test -- --coverage
- run: npm --prefix questionservice test -- --coverage
- run: npm --prefix webapp test -- --coverage
- name: Analyze with SonarCloud
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
node-version: 20
- run: npm --prefix questionservice ci
- run: npm --prefix webapp ci
# - run: npm --prefix webapp test -- --coverage
- run: npm --prefix webapp test -- --coverage
- name: Analyze with SonarCloud
uses: sonarsource/sonarcloud-github-action@master
env:
Expand All @@ -31,7 +31,7 @@ jobs:
- run: npm --prefix questionservice install
- run: npm --prefix webapp install
- run: npm --prefix webapp run build
# - run: npm --prefix webapp run test:e2e
- run: npm --prefix webapp run test:e2e
docker-push-webapp:
name: Push webapp Docker Image to GitHub Packages
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2bfd724

Please sign in to comment.