Bump com.google.javascript:closure-compiler from v20240317 to v20251216 #317
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: Examples CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: examples | |
| name: Java ${{ matrix.java }} | |
| strategy: | |
| matrix: | |
| java: [11, 17] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java }} | |
| - name: Build and Check | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew prodFrontend --no-daemon |