Skip to content

build(deps): bump com.microsoft.azure:msal4j from 1.14.3 to 1.16.1 in /apps/backend #274

build(deps): bump com.microsoft.azure:msal4j from 1.14.3 to 1.16.1 in /apps/backend

build(deps): bump com.microsoft.azure:msal4j from 1.14.3 to 1.16.1 in /apps/backend #274

name: "verify: backend"
on:
pull_request:
branches:
- 'main'
paths:
- 'apps/backend/**'
- '.github/workflows/verify-backend.yaml'
- 'apps/backend/pom.xml'
workflow_dispatch:
jobs:
verify:
name: Verify backend compiles and run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Run tests
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn clean test --also-make --batch-mode