This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
chore(deps): update all non-major dependencies #629
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: "Pull request" | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
validation: | |
name: Gradle Wrapper Validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/wrapper-validation-action@v1 | |
commitlint: | |
name: Validate conventional commits | |
runs-on: ubuntu-latest | |
needs: validation | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
name: Setup Node | |
with: | |
node-version: 14 | |
- run: cd commitlint && npm ci && git ls-remote https://github.com/graphql-java-kickstart/graphql-spring-boot.git HEAD | grep -o '[0-9a-f]*' | xargs -I{} npx commitlint --from {} --verbose | |
name: Run commitlint | |
test: | |
name: Test run | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
java: [ 17 ] | |
needs: [ validation, commitlint ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Cache Gradle | |
uses: actions/cache@v3 | |
env: | |
java-version: ${{ matrix.java }} | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-${{ env.java-version }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: ${{ runner.os }}-${{ env.java-version }}-gradle- | |
- name: Make gradlew executable (non-Windows only) | |
if: matrix.os != 'windows-latest' | |
run: chmod +x ./gradlew | |
- name: Gradle Check (non-Windows) | |
if: matrix.os != 'windows-latest' | |
run: ./gradlew --info check | |
- name: Gradle Check (Windows) | |
if: matrix.os == 'windows-latest' | |
shell: cmd | |
run: gradlew --info check | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action/composite@v2 | |
if: always() && matrix.os != 'ubuntu-latest' | |
with: | |
files: '**/build/test-results/**/*.xml' | |
build: | |
name: Sonar analysis | |
needs: test | |
runs-on: ubuntu-latest | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
if: env.SONAR_TOKEN != null | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK 17 | |
if: env.SONAR_TOKEN != null | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache SonarCloud packages | |
if: env.SONAR_TOKEN != null | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Gradle packages | |
if: env.SONAR_TOKEN != null | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build and analyze | |
if: env.SONAR_TOKEN != null | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew build jacocoTestReport sonarqube --info |