Update front end dependencies #1569
This file contains hidden or 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 tests | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run tests and checks for Gradle plugin breitbandausbaumonitor-archiver | |
| run: ./gradlew check | |
| working-directory: archiver | |
| - name: SonarQube analysis (archiver) | |
| run: ./gradlew sonar | |
| if: github.ref == 'refs/heads/main' | |
| env: | |
| SONARQUBE_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} | |
| working-directory: archiver | |
| - name: SonarQube analysis (front end) | |
| run: ./gradlew frontend:sonar | |
| if: github.ref == 'refs/heads/main' | |
| env: | |
| SONARQUBE_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} |