🔖 Update package.json
to 1.2.1-alpha.1
[skip release]
#171
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: Static code analysis | |
on: | |
push: | |
branches: | |
- main | |
- beta | |
- alpha | |
- dev | |
pull_request: | |
branches: | |
- main | |
- beta | |
- alpha | |
- dev | |
jobs: | |
code-analysis: | |
name: Static code analysis | |
environment: code-analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "temurin" | |
cache: maven | |
- name: Perform static code analysis | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./mvnw -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dgpg.skip -Dsonar.projectKey=lengors_js2pets |