Bump parcel from 2.15.4 to 2.16.3 in /app/local_modules/parcel-resolver-theme #2150
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: Verify Codebase | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| verify: | |
| name: Verify Codebase | |
| runs-on: ubuntu-latest | |
| env: | |
| MVN: ./mvnw --show-version --batch-mode | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Initialize CodeQL | |
| id: init-codeql | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: java | |
| - name: Set up JDK | |
| id: setup-jdk | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 11 | |
| distribution: temurin | |
| cache: maven | |
| - name: Verify | |
| id: verify | |
| run: $MVN -P skip-gwt verify | |
| - name: Perform CodeQL Analysis | |
| id: perform-codeql | |
| uses: github/codeql-action/analyze@v4 |