fix(deps): update json web token to v0.13.0 #117
This file contains hidden or 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: CI | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| name: '${{ matrix.platform }} with Java ${{ matrix.java-distribution }} version ${{ matrix.java-version }}' | |
| strategy: | |
| matrix: | |
| platform: | |
| - ubuntu-latest | |
| java-distribution: | |
| - adopt-hotspot | |
| - temurin | |
| - zulu | |
| java-version: | |
| - 11 | |
| include: | |
| - platform: windows-latest | |
| java-distribution: adopt-hotspot | |
| java-version: 11 | |
| - platform: macos-latest | |
| java-distribution: adopt-hotspot | |
| java-version: 11 | |
| runs-on: ${{ matrix.platform }} | |
| timeout-minutes: 45 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: ${{ matrix.java-distribution }} | |
| java-version: ${{ matrix.java-version }} | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Generate and submit dependency graph | |
| if: ${{ github.event_name == 'push' }} | |
| uses: gradle/actions/dependency-submission@v4 | |
| - name: Build and Test | |
| run: ./gradlew -S --stacktrace --no-daemon --no-parallel build jacocoAggregateReport coveralls | |
| - name: Upload test reports | |
| if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-reports-${{ matrix.platform }}-${{ matrix.java-distribution }}-${{ matrix.java-version }} | |
| path: '**/build/reports/tests/' | |
| - name: Lint JavaScript | |
| run: ./gradlew -S --no-daemon --no-parallel :npm_run_lint-js |