From 632152108163c85586f8b89eb54c8ea9eb7a9875 Mon Sep 17 00:00:00 2001 From: Patrick Rodgers Date: Wed, 28 Feb 2024 08:53:01 -0500 Subject: [PATCH] Create v4_merge.yml --- .github/workflows/v4_merge.yml | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/v4_merge.yml diff --git a/.github/workflows/v4_merge.yml b/.github/workflows/v4_merge.yml new file mode 100644 index 000000000..c40ee2470 --- /dev/null +++ b/.github/workflows/v4_merge.yml @@ -0,0 +1,37 @@ +name: V4 Merge Testing +on: + push: + branches: + - version-4 +env: + PNPTESTING_MSAL_GRAPH_CONFIG: ${{ secrets.PNPTESTING_MSAL_GRAPH_CONFIG }} + PNPTESTING_MSAL_GRAPH_SCOPES: ${{ secrets.PNPTESTING_MSAL_GRAPH_SCOPES }} + PNPTESTING_MSAL_SP_CONFIG: ${{ secrets.PNPTESTING_MSAL_SP_CONFIG }} + PNPTESTING_MSAL_SP_SCOPES: ${{ secrets.PNPTESTING_MSAL_SP_SCOPES }} + PNPTESTING_NOTIFICATIONURL: ${{ secrets.PNPTESTING_NOTIFICATIONURL }} + PNPTESTING_SITEURL: ${{ secrets.PNPTESTING_SITEURL }} +jobs: + run_push_tests: + runs-on: ubuntu-latest + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + with: + ref: version-4 + # setup nodejs + - name: Use Node.js 18 + uses: actions/setup-node@v3 + with: + node-version: 18 + registry-url: 'https://registry.npmjs.org' + cache: 'npm' + cache-dependency-path: package-lock.json + + # Run the npm install + - run: npm ci + - name: Run lint + run: npm run lint + - name: Run package + run: npm run package + - name: Run tests + run: npm test -- --mode push --cleanup --msal