Skip to content

Parallel API Tests #264

Parallel API Tests

Parallel API Tests #264

Workflow file for this run

name: Parallel API Tests
on:
push:
branches:
- master
schedule:
- cron: '0 13 * * *' # 1PM EST
jobs:
acceptance_tests:
runs-on: ubuntu-latest
env:
adminUsername: ${{ secrets.adminUsername }}
adminPassword: ${{ secrets.adminPassword }}
strategy:
fail-fast: false
matrix:
containers: [1, 2]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run Cypress api tests in parallel
uses: cypress-io/github-action@v6
with:
record: true
parallel: true
command: npm run api