refactor: clarify builtin type catalogs and execution flow #5
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: E2E command sweep | |
| # Boots a real Paper server with the freshly built plugin and runs every registered command type | |
| # through the console, failing the build on any parser/handler error, exception, or a newly added | |
| # objective/action/condition/trigger type that ships without a test command. Console-driven only | |
| # (no Minecraft client) — see e2e/README.md. | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 35 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '25' | |
| - name: Set up Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Run server-side command sweep | |
| run: ./e2e/run-sweep.sh | |
| - name: Run BetonQuest 3 server-side command sweep | |
| run: ./e2e/run-betonquest-sweep.sh | |
| - name: Upload server log | |
| if: ${{ !cancelled() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: e2e-server-logs | |
| path: | | |
| /tmp/nq-e2e-server.log | |
| /tmp/nq-betonquest-server.log | |
| if-no-files-found: ignore |