Skip to content

Update typescript-eslint monorepo to v8.19.1 #427

Update typescript-eslint monorepo to v8.19.1

Update typescript-eslint monorepo to v8.19.1 #427

Workflow file for this run

name: Build & test backend application
on:
workflow_call:
pull_request:
push:
paths:
- "backend/**"
branches:
- "**"
tags-ignore:
- "**"
jobs:
Build-Backend:
name: Build & test backend application
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Build backend
working-directory: ./backend
run: sbt clean update compile test dist