Parallel Performance Tests #4459
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: Parallel Performance Tests | |
on: | |
push: | |
branches: | |
- master | |
- testsftpAdd | |
schedule: | |
- cron: '0 12-16 * * *' #every hour from 12AM to 4:59PM EST | |
jobs: | |
performance_tests: | |
runs-on: ubuntu-latest | |
env: | |
adminUsername: ${{ secrets.adminUsername }} | |
adminPassword: ${{ secrets.adminPassword }} | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm install | |
- name: Run Cypress performance tests in parallel | |
uses: cypress-io/github-action@v6 | |
with: | |
record: true | |
parallel: true | |
command: npm run performance |