Skip to content

Commit 8723893

Browse files
committed
give each job a specific name
1 parent c6d2bd9 commit 8723893

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
script/ci-changes-detector "$BASE_REF"
5858
shell: bash
5959

60-
examples:
60+
build-examples-and-test-generators:
6161
needs: detect-changes
6262
# Run on master, workflow_dispatch, OR when generators needed
6363
if: |

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
path: spec/dummy/public/webpack
142142
key: dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }}-ruby${{ matrix.ruby-version }}-${{ matrix.dependency-level }}
143143

144-
dummy-app-integration-tests:
144+
spec-dummy-integration-tests:
145145
needs: [detect-changes, build-dummy-app-webpack-test-bundles]
146146
# Run on master, workflow_dispatch, OR when tests needed on PR
147147
if: |

.github/workflows/lint-js-and-ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
script/ci-changes-detector "$BASE_REF"
5959
shell: bash
6060

61-
build:
61+
lint-js-and-ruby:
6262
needs: detect-changes
6363
if: github.ref == 'refs/heads/master' || needs.detect-changes.outputs.run_lint == 'true'
6464
env:

.github/workflows/package-js-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
script/ci-changes-detector "$BASE_REF"
6464
shell: bash
6565

66-
build:
66+
package-js-tests:
6767
needs: detect-changes
6868
# Run on master OR when JS tests needed on PR
6969
if: |

.github/workflows/pro-integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
shell: bash
6363

6464
# Build webpack test bundles for dummy app
65-
build-dummy-app-webpack-test-bundles:
65+
pro-build-dummy-app-webpack-test-bundles:
6666
needs: detect-changes
6767
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.run_pro_tests == 'true'
6868
runs-on: ubuntu-22.04
@@ -147,7 +147,7 @@ jobs:
147147
key: v4-pro-dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }}
148148

149149
# RSpec integration tests with Node renderer
150-
rspec-dummy-app-node-renderer:
150+
pro-dummy-app-node-renderer:
151151
needs:
152152
- detect-changes
153153
- build-dummy-app-webpack-test-bundles
@@ -324,7 +324,7 @@ jobs:
324324
path: react_on_rails_pro/spec/dummy/yarn-error.log
325325

326326
# Playwright E2E tests with Redis service
327-
dummy-app-node-renderer-e2e-tests:
327+
node-renderer-e2e-tests:
328328
needs:
329329
- detect-changes
330330
- build-dummy-app-webpack-test-bundles

.github/workflows/pro-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
script/ci-changes-detector "$BASE_REF"
6262
shell: bash
6363

64-
lint-js-and-ruby:
64+
pro-lint-js-and-ruby:
6565
needs: detect-changes
6666
if: github.ref == 'refs/heads/master' || needs.detect-changes.outputs.run_pro_lint == 'true'
6767
runs-on: ubuntu-22.04

.github/workflows/pro-test-package-and-gem.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
shell: bash
6363

6464
# Build webpack test bundles for dummy app
65-
build-dummy-app-webpack-test-bundles:
65+
pro-build-dummy-app-webpack-test-bundles:
6666
needs: detect-changes
6767
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.run_pro_tests == 'true'
6868
runs-on: ubuntu-22.04
@@ -147,7 +147,7 @@ jobs:
147147
key: v4-pro-dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }}
148148

149149
# Jest unit tests for Pro package
150-
package-js-tests:
150+
pro-package-js-tests:
151151
needs:
152152
- detect-changes
153153
- build-dummy-app-webpack-test-bundles
@@ -227,7 +227,7 @@ jobs:
227227
path: react_on_rails_pro/jest
228228

229229
# RSpec tests for Pro package
230-
rspec-package-specs:
230+
pro-gem-tests:
231231
needs: detect-changes
232232
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.run_pro_tests == 'true'
233233
strategy:

0 commit comments

Comments
 (0)