Skip to content

Update front end dependencies #1278

Update front end dependencies

Update front end dependencies #1278

Workflow file for this run

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 }}