Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

🔥(frontend): remove dangling chair count #129

🔥(frontend): remove dangling chair count

🔥(frontend): remove dangling chair count #129

Workflow file for this run

name: Run Spring Boot Unit Tests on Merge to Main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run tests
run: mvn clean test --batch-mode --no-transfer-progress