chore(deps): update dependency @angular/compiler-cli to v21 #63
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: "Test Build" | |
| on: | |
| push | |
| jobs: | |
| job_ui_build: | |
| name: "UI Build" | |
| runs-on: ubuntu-latest | |
| env: | |
| VOLTA_FEATURE_PNPM: 1 | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: 'Setup Volta' | |
| uses: volta-cli/action@v4 | |
| - name: 'Install Dependencies' | |
| run: cd ./booklore-ui && pnpm install | |
| - name: 'Run Build' | |
| run: cd ./booklore-ui && pnpm run build | |
| job_backnen_build: | |
| name: "Backend Build" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: 'Setup JDK' | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'corretto' | |
| java-version: '25' | |
| - name: 'Run Build' | |
| run: cd ./booklore-api && ./gradlew bootJar |