diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index d024a49681..fb6d5d1b63 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -26,20 +26,15 @@ jobs: - macos-latest - windows-latest node_version: - - 18 - 20 - 22 # - 23 exclude: # run just node v20 on macos and windows - - os: macos-latest - node_version: 18 - os: macos-latest node_version: 22 # - os: macos-latest # node_version: 23 - - os: windows-latest - node_version: 18 - os: windows-latest node_version: 22 # - os: windows-latest diff --git a/.github/workflows/nightly/process-matrix.ts b/.github/workflows/nightly/process-matrix.ts index d0ff3f185d..7fe8870fdf 100644 --- a/.github/workflows/nightly/process-matrix.ts +++ b/.github/workflows/nightly/process-matrix.ts @@ -56,7 +56,7 @@ const matrixData: MatrixData = { ], nodeTLS: 20, setup: [ - { os: 'ubuntu-latest', os_name: 'Linux', os_timeout: 60, package_managers: ['npm', 'pnpm', 'yarn'], node_versions: [18, 20, 22], excluded: ['e2e-detox', 'e2e-react-native', 'e2e-expo'] }, + { os: 'ubuntu-latest', os_name: 'Linux', os_timeout: 60, package_managers: ['npm', 'pnpm', 'yarn'], node_versions: [20, 22], excluded: ['e2e-detox', 'e2e-react-native', 'e2e-expo'] }, { os: 'macos-latest', os_name: 'MacOS', os_timeout: 90, package_managers: ['npm'], node_versions: [20] }, { os: 'windows-latest', os_name: 'WinOS', os_timeout: 180, package_managers: ['npm'], node_versions: [20], excluded: ['e2e-detox', 'e2e-react-native', 'e2e-expo'] } ]