Skip to content

Commit 6b2ac23

Browse files
authored
Temporarily exclude windows and package manager tests (#2899)
* Temporarily exclude windows and package manager tests * Temporarily exclude windows and package manager tests
1 parent 97a7284 commit 6b2ac23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/health_checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242
description: 'Include Windows?'
4343
required: false
4444
type: boolean
45-
default: true
45+
default: false
4646
node:
4747
description: 'Node versions list (as JSON array).'
4848
required: false
@@ -73,7 +73,7 @@ on:
7373
description: 'Include Windows?'
7474
required: false
7575
type: boolean
76-
default: true
76+
default: false
7777
node:
7878
description: 'Node versions list (as JSON array).'
7979
required: false
@@ -113,7 +113,7 @@ jobs:
113113
os+=', "macos-14"'
114114
os_for_e2e+=', "macos-14-xlarge"'
115115
fi
116-
if [ "${{ inputs.include-windows }}" != "false" ]; then
116+
if [ "${{ inputs.include-windows }}" == "true" ]; then
117117
os+=', "windows-2025"'
118118
os_for_e2e+=', "windows-2025"'
119119
fi
@@ -857,7 +857,7 @@ jobs:
857857
if: ${{ github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'hotfix') }}
858858
needs:
859859
- test_with_coverage
860-
- e2e_package_manager
860+
# - e2e_package_manager
861861
- e2e_deployment
862862
- e2e_sandbox
863863
- e2e_notices

0 commit comments

Comments
 (0)