We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b88c1d commit f73ea70Copy full SHA for f73ea70
.github/workflows/test.yml
@@ -53,3 +53,13 @@ jobs:
53
run: yarn run lint && yarn run format
54
- name: Test
55
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