Skip to content

Bump @azure/msal-browser from 3.16.0 to 3.23.0 in /graph-tutorial #323

Bump @azure/msal-browser from 3.16.0 to 3.23.0 in /graph-tutorial

Bump @azure/msal-browser from 3.16.0 to 3.23.0 in /graph-tutorial #323

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
paths:
- demo/graph-tutorial/**
pull_request:
branches:
- main
- live
workflow_dispatch:
jobs:
build:
defaults:
run:
working-directory: graph-tutorial
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Copy settings file
run: |
cp ./src/Config.example.ts ./src/Config.ts
- name: Verify npm all runs and build output matches
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn run build
- run: yarn run test