Add admin operations for cache lifecycle and schema management #41
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - run: npm install | |
| - run: npm run lint | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '25' | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - run: npm install | |
| - name: Run tests | |
| run: ./run-docker-testsuite.sh | |
| - name: Tear down containers | |
| if: always() | |
| run: docker compose --profile failover down --remove-orphans 2>/dev/null || true |