Bump caniuse-lite from 1.0.30001295 to 1.0.30001757 in /lib/msal-browser #127
Workflow file for this run
This file contains hidden or 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
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| name: msal-angular E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| - master | |
| pull_request: | |
| paths: | |
| - 'lib/msal-angular/**/*' | |
| - 'lib/msal-browser/**/*' | |
| - 'lib/msal-common/**/*' | |
| - 'samples/msal-angular-v2-samples/**/*' | |
| - 'samples/e2eTestUtils/**/*' | |
| - '!**.md' | |
| - '.github/workflows/msal-angular-e2e.yml' | |
| concurrency: | |
| group: angular-e2e-${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| run-e2e: | |
| if: (github.repository == 'AzureAD/microsoft-authentication-library-for-js') && (github.actor != 'dependabot[bot]') && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push')) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sample: | |
| - 'angular9-v2-sample-app' | |
| - 'angular10-sample-app' | |
| - 'angular11-b2c-sample' | |
| - 'angular11-sample-app' | |
| - 'angular12-sample-app' | |
| name: ${{ matrix.sample }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v2 | |
| - name: Clean Install | |
| env: | |
| RUNNING_NODE_CI: 1 | |
| run: npm ci | |
| - name: Build packages | |
| working-directory: lib/msal-angular | |
| run: npm run build:all | |
| - name: Install Test Tools | |
| working-directory: samples | |
| run: npm ci | |
| - name: Install ${{ matrix.sample }} | |
| working-directory: samples/msal-angular-v2-samples/${{ matrix.sample }} | |
| run: | | |
| npm run install:local | |
| npm install | |
| - name: Build ${{ matrix.sample }} | |
| working-directory: samples/msal-angular-v2-samples/${{ matrix.sample }} | |
| run: npm run build | |
| - name: E2E Tests | |
| working-directory: samples/msal-angular-v2-samples/${{ matrix.sample }} | |
| timeout-minutes: 5 | |
| env: | |
| AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
| AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
| AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
| run: npm run e2e | |
| - name: Upload E2E Test Screenshots | |
| uses: actions/upload-artifact@v2 | |
| if: failure() | |
| with: | |
| name: e2e-test-screenshots | |
| path: samples/**/screenshots |