Live Preview: Add possibility to disable the feature in the config file sent to the frontend #624
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: test | |
on: | |
push: | |
branches: | |
- master | |
- next | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
maven-build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Maven Action | |
uses: s4u/[email protected] | |
with: | |
java-version: "17" | |
maven-version: "3.9.5" | |
- name: Build with Maven | |
run: mvn -B clean install | |
- name: Run Sonar analysis | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: > | |
mvn -Psonar | |
-Dsonar.token=${{ secrets.SONAR_TOKEN }} | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.organization=tuwien-csd | |
-Dsonar.projectKey=tuwien-csd_damap-backend | |
-Dsonar.sourceEncoding=UTF-8 | |
-Dsonar.coverage.exclusions=docker/**/*, | |
sonar:sonar |