🎨 style(ui/ux): ajusta layout do join us (#288) #49
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: Run SonarCloud analysis | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sonarcloud: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Nx set SHAs | |
uses: nrwl/nx-set-shas@v3 | |
- name: Load & cache dependencies | |
uses: ./.github/actions/cached-deps | |
- name: Test code | |
run: npx nx run-many -t test --parallel=3 --configuration=ci --code-coverage --coverageReporters=lcov | |
- name: Merge coverage | |
run: node ./tools/scripts/merge-coverage.js | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |