Skip to content

Commit

Permalink
Shorten names for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Aug 24, 2023
1 parent 6e0ad7b commit fdd3632
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/shared-test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:

jobs:
integration:
name: '👀 Integration Test: (OS: "${{ inputs.os }}" Node: "${{ matrix.node }}" Browser: "${{ matrix.browser }}")'
name: '👀 Test (${{ inputs.os }}/node@${{ matrix.node }}/${{ matrix.browser }})'
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shared-test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:

jobs:
test:
name: "🧪 Test: (OS: ${{ inputs.os }} Node: ${{ matrix.node }})"
name: '🧪 Test (${{ inputs.os }}/node@${{ matrix.node }})'
strategy:
fail-fast: false
matrix:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-full.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🧪 Test
name: Branch

# main/dev branches will get the full run across all OS/browsers

Expand All @@ -18,30 +18,30 @@ jobs:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-build.yml

test-unit:
unit:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: '["ubuntu-latest", "windows-latest"]'
node_version: '["latest"]'

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

test-integration-windows:
windows:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: '["windows-latest"]'
node_version: '["latest"]'
browser: '["edge"]'

test-integration-macos:
macos:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-pr-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🧪 Test (PR) (Ubuntu)
name: PR (Base)

# All PRs touching code will run tests on ubuntu/node/chromium

Expand All @@ -15,14 +15,14 @@ jobs:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-build.yml

test-unit-ubuntu:
unit:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "ubuntu-latest"
node_version: '["latest"]'

test-integration-ubuntu-chromium:
integration:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-pr-windows-macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🧪 Test (PR) (Windows, MacOS)
name: PR (Full)

# PRs touching create-remix/remix-dev will also run on Windows and OSX

Expand All @@ -10,30 +10,30 @@ on:
- "!**/*.md"

jobs:
test-unit-windows:
unit-windows:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-unit.yml
with:
os: "windows-latest"
node_version: '["latest"]'

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

test-integration-windows:
integration-windows:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
os: "windows-latest"
node_version: '["latest"]'
browser: '["edge"]'

test-integration-macos:
integration-macos:
if: github.repository == 'remix-run/remix'
uses: ./.github/workflows/shared-test-integration.yml
with:
Expand Down

0 comments on commit fdd3632

Please sign in to comment.