Skip to content

Commit fc58bcd

Browse files
committed
fix script path
1 parent b51e601 commit fc58bcd

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

.github/workflows/e2e-test.yml

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ jobs:
5454
- name: Poll npm until version to test is available for install
5555
run: |
5656
echo "Polling npm for firebase@latest"
57-
node ../scripts/release/poll-npm-publish.js
57+
node ./scripts/release/poll-npm-publish.js
58+
# run in root
59+
working-directory: '.'
5860
env:
5961
VERSION: latest
6062
- name: Yarn install
@@ -83,23 +85,23 @@ jobs:
8385
env:
8486
APP_CHECK_DEBUG_TOKEN: ${{ secrets.APP_CHECK_DEBUG_TOKEN }}
8587
run: xvfb-run yarn test:compat
86-
- name: Tests succeeded
87-
if: success()
88-
run: node scripts/ci/notify-test-result.js success
89-
# we don't want THIS step erroring to trigger the failure notification
90-
continue-on-error: true
91-
env:
92-
WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
93-
RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
94-
VERSION_OR_TAG: latest
95-
# run in root
96-
working-directory: '.'
97-
- name: Tests failed
98-
if: failure()
99-
run: node scripts/ci/notify-test-result.js fail
100-
env:
101-
WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
102-
RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
103-
VERSION_OR_TAG: ${{ github.event.client_payload.versionOrTag }}
104-
# run in root
105-
working-directory: '.'
88+
# - name: Tests succeeded
89+
# if: success()
90+
# run: node scripts/ci/notify-test-result.js success
91+
# # we don't want THIS step erroring to trigger the failure notification
92+
# continue-on-error: true
93+
# env:
94+
# WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
95+
# RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
96+
# VERSION_OR_TAG: latest
97+
# # run in root
98+
# working-directory: '.'
99+
# - name: Tests failed
100+
# if: failure()
101+
# run: node scripts/ci/notify-test-result.js fail
102+
# env:
103+
# WEBHOOK_URL: ${{ secrets.JSCORE_CHAT_WEBHOOK_URL }}
104+
# RELEASE_TRACKER_URL: ${{ secrets.RELEASE_TRACKER_URL }}
105+
# VERSION_OR_TAG: ${{ github.event.client_payload.versionOrTag }}
106+
# # run in root
107+
# working-directory: '.'

0 commit comments

Comments
 (0)