Skip to content

Commit

Permalink
Revert back to latest versions of node in CI (#7385)
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Sep 8, 2023
1 parent ed70c7f commit 30bcd9e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-full.yml
Expand Up @@ -25,23 +25,23 @@ jobs:
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "ubuntu-latest"
node_version: "['18', '20.5']"
node_version: "[18, 20]"

unit-windows:
name: "🧪 Unit Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "windows-latest"
node_version: "['18', '20.5']"
node_version: "[18, 20]"

integration-ubuntu:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "ubuntu-latest"
node_version: "['18', '20.5']"
node_version: "[18, 20]"
browser: '["chromium", "firefox"]'

integration-windows:
Expand All @@ -50,7 +50,7 @@ jobs:
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "windows-latest"
node_version: "['18', '20.5']"
node_version: "[18, 20]"
browser: '["msedge"]'

integration-macos:
Expand All @@ -59,5 +59,5 @@ jobs:
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "macos-latest"
node_version: "['18', '20.5']"
node_version: "[18, 20]"
browser: '["webkit"]'
4 changes: 2 additions & 2 deletions .github/workflows/test-pr-ubuntu.yml
Expand Up @@ -22,13 +22,13 @@ jobs:
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "ubuntu-latest"
node_version: '["20.5.1"]'
node_version: '["latest"]'

integration-chromium:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "ubuntu-latest"
node_version: '["20.5.1"]'
node_version: '["latest"]'
browser: '["chromium"]'
8 changes: 4 additions & 4 deletions .github/workflows/test-pr-windows-macos.yml
Expand Up @@ -16,15 +16,15 @@ jobs:
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "windows-latest"
node_version: '["20.5.1"]'
node_version: '["latest"]'

integration-firefox:
name: "👀 Integration Test"
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "ubuntu-latest"
node_version: '["20.5.1"]'
node_version: '["latest"]'
browser: '["firefox"]'

integration-msedge:
Expand All @@ -33,7 +33,7 @@ jobs:
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "windows-latest"
node_version: '["20.5.1"]'
node_version: '["latest"]'
browser: '["msedge"]'

integration-webkit:
Expand All @@ -42,5 +42,5 @@ jobs:
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "macos-latest"
node_version: '["20.5.1"]'
node_version: '["latest"]'
browser: '["webkit"]'

0 comments on commit 30bcd9e

Please sign in to comment.