[cspidiocy] Fix setTimeout calls, first fixes for Plotly library #765
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: Java CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'zulu' | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
- name: Build with Maven | |
run: mvn -q --batch-mode --update-snapshots clean package -Dsonar.login=${{ secrets.SONAR_TOKEN }} -Dmaven.javadoc.skip=true -DCI=true -Dskarp.targetdb.name=testdb${{ github.run_number }} -Dskarp.junitdb.name=fw_junit${{ github.run_number }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |