Skip to content

Commit 6f1f9f8

Browse files
authored
feat: add checks-done job (#103)
1 parent d8588e5 commit 6f1f9f8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/default.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626
build:
2727
uses: ./.github/workflows/01-build.yml
2828
needs: [init]
29+
30+
checks-done:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- name: 🎉 Checks done
34+
run: echo "🎉 All tests & build were successful."
35+
needs: [build, test, lint]
2936

3037
deploy:
3138
uses: ./.github/workflows/02-deploy-gh-pages.yml

0 commit comments

Comments
 (0)