We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e815f commit 0307c73Copy full SHA for 0307c73
.github/workflows/nodejs.yml
@@ -60,7 +60,7 @@ jobs:
60
if: ${{ needs.changes.outputs.cms == 'true' }}
61
runs-on: ubuntu-latest
62
strategy:
63
- fail-fast: false # Let Cypress Cloud auto-cancellation handle failures
+ fail-fast: true
64
matrix:
65
machine: [1, 2, 3, 4]
66
steps:
cypress/run.mjs
@@ -52,9 +52,6 @@ async function runCypress() {
52
if (tags.length > 0) {
53
args.push('--tag', tags.join(','));
54
}
55
-
56
- // Enable auto-cancellation to save CI time on failures
57
- args.push('--auto-cancel-after-failures', '3');
58
59
console.log('Running Cypress with args:', args.join(' '));
0 commit comments