Bump org.json:json from 20090211 to 20250107 in /msal-web-sample #115
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 }} |