Update typescript-eslint monorepo to v8.19.1 #434
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
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 |