Skip to content

Commit c9a9972

Browse files
chore: rename job name from 'e2etest' to 'e2e'
1 parent 142177e commit c9a9972

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/dev-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This worklflow will perform following actions when the code is pushed to development branch:
22
# - Run end to end test.
33
# - Check Linting.
4-
# - Build the latest docker image in development which needs both e2etest and lint to pass first.
4+
# - Build the latest docker image in development which needs both e2e and lint to pass first.
55
# - Push the latest docker image to Google Artifact Registry-Dev.
66
# - Rollout the latest image in GKE.
77
#
@@ -26,7 +26,7 @@ env:
2626
REPOSITORY_NAMESPACE: nfdi4chem
2727

2828
jobs:
29-
e2etest:
29+
e2e:
3030
uses: NFDI4Chem/nmrium-react-wrapper/.github/workflows/e2e.yml@main
3131

3232
lint:
@@ -36,7 +36,7 @@ jobs:
3636
name: Deploy to dev
3737
if: github.ref == 'refs/heads/development'
3838
runs-on: ubuntu-latest
39-
needs: [lint, e2etest]
39+
needs: [lint, e2e]
4040
steps:
4141
- name: Checkout
4242
uses: actions/checkout@v4

.github/workflows/dev-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- development
77

88
jobs:
9-
e2etest:
9+
e2e:
1010
uses: NFDI4Chem/nmrium-react-wrapper/.github/workflows/e2e.yml@main
1111
lint:
1212
uses: NFDI4Chem/nmrium-react-wrapper/.github/workflows/nodejs.yml@main

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This worklflow will perform following actions when the code is pushed to main branch.
33
# - Run end to end test
44
# - Test linting.
5-
# - Trigger release-please action to create release which needs e2etest & lint to pass first.
5+
# - Trigger release-please action to create release which needs e2e & lint to pass first.
66
#
77
# Maintainers:
88
# - name: Nisha Sharma
@@ -16,15 +16,15 @@ on:
1616
- main
1717

1818
jobs:
19-
e2etest:
19+
e2e:
2020
uses: NFDI4Chem/nmrium-react-wrapper/.github/workflows/e2e.yml@main
2121

2222
lint:
2323
uses: NFDI4Chem/nmrium-react-wrapper/.github/workflows/nodejs.yml@main
2424

2525
release-please:
2626
runs-on: ubuntu-latest
27-
needs: ['lint', 'e2etest']
27+
needs: ['lint', 'e2e']
2828
steps:
2929
- uses: google-github-actions/release-please-action@v3
3030
with:

0 commit comments

Comments
 (0)