Add client-side syntax highlighting for code blocks in lessons #89
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: Build | |
| # Verify that the project compiles on every PR and push. | |
| # One focused workflow per CI concern (build, test, lint) instead of a | |
| # monolithic ci.yml (see issue #49, closed as wontfix). Test compilation | |
| # and execution live in test.yml. | |
| on: | |
| pull_request: | |
| branches: [dev] | |
| push: | |
| branches: [dev, main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: "21" | |
| cache: maven | |
| - name: Compile the project | |
| run: ./mvnw -B -ntp compile |