Skip to content

Add Node.js workflow to run frontend tests #11

Add Node.js workflow to run frontend tests

Add Node.js workflow to run frontend tests #11

Workflow file for this run

name: Run backend tests
on:
push:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 22
uses: actions/setup-java@v3
with:
java-version: '22'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file backend/pom.xml