Fixing the Audience in the load testing apis | Adding the retries for patch test | Securty issue to update the shell commands #246
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
| name: unit tests for main | |
| on: | |
| push: | |
| branches: | |
| - releases/* | |
| - main | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| branches: | |
| - releases/* | |
| - main | |
| jobs: | |
| run-integration-test: | |
| environment: automation test | |
| name: Validate PR | |
| strategy: | |
| matrix: | |
| os: [windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Installing dependencies and building latest changes | |
| run: | | |
| npm install -f | |
| - name: Run Unit Tests | |
| run: | | |
| npm run test |