Skip to content

Commit f73ea70

Browse files
authored
build: add gha-done step to CI (#1777)
1 parent 4b88c1d commit f73ea70

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,13 @@ jobs:
5353
run: yarn run lint && yarn run format
5454
- name: Test
5555
run: yarn tsc && yarn test:ci
56+
57+
gha-done:
58+
name: GitHub Actions Completed
59+
runs-on: ubuntu-latest
60+
needs: [test]
61+
if: always() && !contains(needs.*.result, 'failure')
62+
steps:
63+
- name: GitHub Actions Jobs Done
64+
run: |
65+
echo "All GitHub Actions Jobs are done"

0 commit comments

Comments
 (0)