5414 hook up local dev to static es index on s3 #5542
Workflow file for this run
This file contains 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
--- | |
# This workflow tests the HMI Server | |
name: Server Tests | |
env: | |
local_host_name: "localhost" | |
# Controls when the action will run. | |
# yamllint disable-line rule:truthy | |
on: | |
# Triggers the workflow on push or pull request events but only for the $default-branch branch | |
push: | |
branches: ["main"] | |
paths: | |
- "packages/server/**" | |
pull_request: | |
branches: ["main"] | |
paths: | |
- "packages/server/**" | |
# Allow for triggering from other workflows | |
workflow_call: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
server-tests: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: read | |
checks: write | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
# Validate Gradle JAR | |
- name: Validate GradleW JAR | |
uses: gradle/actions/wrapper-validation@v3 | |
# Setup Java 17 | |
- name: Setup Java v17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
cache: gradle | |
# Start containers | |
- name: Start containers | |
run: cd containers && docker compose --file docker-compose-actions.yml up --detach --wait | |
# Run the tests | |
- name: Run tests | |
run: ./gradlew test --info | |
working-directory: packages/server | |
# Run test reporter | |
- name: Test Report | |
uses: dorny/[email protected] | |
if: always() | |
with: | |
name: Server JUnit Tests | |
path: packages/server/build/test-results/test/*.xml # Path to test results | |
reporter: java-junit # Format of test results | |
# Stop containers | |
- name: Stop containers | |
if: always() | |
run: cd containers && docker compose --file docker-compose-actions.yml down |