chore(deps): Bump the dependencies-angular group in /springwolf-ui with 12 updates #3207
Workflow file for this run
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: springwolf-ui | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [ opened, synchronize, ready_for_review ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| checks: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| env: | |
| project: springwolf-ui | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Check formatting (before running tests) | |
| run: ./gradlew -p ${{ env.project }} spotlessCheck | |
| - name: Test | |
| run: ./gradlew -p ${{ env.project }} test | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v6 | |
| if: success() || failure() | |
| with: | |
| check_name: test-ui-jest | |
| require_tests: true | |
| report_paths: '**/build/test-results/junit.xml' | |
| annotate_only: github.event.pull_request.head.repo.full_name != github.repository # for forks | |
| - name: Build | |
| run: ./gradlew -p ${{ env.project }} build | |
| publish: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| if: github.ref == 'refs/heads/main' | |
| needs: [build] | |
| permissions: | |
| contents: write | |
| env: | |
| project: springwolf-ui | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Publish package | |
| if: github.ref == 'refs/heads/main' | |
| run: ./gradlew -p ${{ env.project }} publish | |
| env: | |
| ORG_GRADLE_PROJECT_SNAPSHOT: true | |
| ORG_GRADLE_PROJECT_SIGNINGKEY: ${{secrets.ORG_GRADLE_PROJECT_SIGNINGKEY}} | |
| ORG_GRADLE_PROJECT_SIGNINGPASSWORD: ${{secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD}} | |
| ORG_GRADLE_PROJECT_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
| ORG_GRADLE_PROJECT_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
| - name: Build gh-pages | |
| if: github.ref == 'refs/heads/main' | |
| run: ./gradlew -p ${{ env.project }} buildPages | |
| - name: Deploy to gh pages 🚀 | |
| if: github.ref == 'refs/heads/main' | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| folder: ${{ env.project }}/dist/springwolf-ui/ |