Update dependency cypress-split to v1.24.6 #365
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: ci | |
on: push | |
jobs: | |
# example running all tests on a single machine | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- name: Run Cypress tests 🧪 | |
# https://github.com/cypress-io/github-action | |
uses: cypress-io/github-action@v5 | |
# example splitting all tests across GitHub machines | |
prepare: | |
runs-on: ubuntu-22.04 | |
# explicitly set the output of this job | |
# so that other jobs can use it | |
outputs: | |
matrix: ${{ steps.prepare.outputs.matrix }} | |
steps: | |
# generate the list using a bash script | |
- name: Create matrix ⊹ | |
id: prepare | |
# for reusable workflow, must use the full action reference | |
uses: bahmutov/gh-build-matrix@main | |
with: | |
n: 3 # number of containers to output | |
- name: Print result 🖨 | |
run: echo '${{ steps.prepare.outputs.matrix }}' | |
test-split: | |
needs: prepare | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }} | |
steps: | |
- name: Checkout 🛎 | |
uses: actions/checkout@v4 | |
- name: Print GitHub variables 🖨 | |
run: npx @bahmutov/print-env GITHUB | |
- name: Print GitHub strategy context 🖨 | |
run: echo '${{ toJSON(strategy) }}' | |
- name: Run split Cypress tests 🧪 | |
# https://github.com/cypress-io/github-action | |
uses: cypress-io/github-action@v5 | |
env: | |
SPLIT: ${{ strategy.job-total }} | |
SPLIT_INDEX: ${{ strategy.job-index }} | |
DEBUG: cypress-split |