Skip to content

refactor: document ANSI injection attack protections in sanitizeForTe… #20

refactor: document ANSI injection attack protections in sanitizeForTe…

refactor: document ANSI injection attack protections in sanitizeForTe… #20

name: Integration Tests
on:
push:
branches:
- '**'
paths:
- 'server/**'
- '.github/workflows/integration-tests.yml'
workflow_dispatch:
inputs:
ref:
description: 'Git ref to test'
required: false
default: ''
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ref || github.ref }}
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Run integration tests
run: mvn test -f server/pom.xml -P integration-tests
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: server/target/surefire-reports/