Skip to content

Add admin operations for cache lifecycle and schema management #41

Add admin operations for cache lifecycle and schema management

Add admin operations for cache lifecycle and schema management #41

Workflow file for this run

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