Bump org.springframework.boot:spring-boot-starter-parent from 2.1.4.RELEASE to 3.4.0 in /msal-web-sample #108
Workflow file for this run
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: Web Sample CI | |
on: | |
push: | |
branches: [ master ] | |
paths: ['msal-web-sample/**', '.github/workflows/**'] | |
pull_request: | |
branches: [ master ] | |
paths: ['msal-web-sample/**', '.github/workflows/**'] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
relativePath: ./msal-web-sample | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 16 | |
- name: Build with Maven | |
run: mvn --batch-mode --update-snapshots verify | |
working-directory: ${{ env.relativePath }} |