File tree Expand file tree Collapse file tree 3 files changed +25
-72
lines changed Expand file tree Collapse file tree 3 files changed +25
-72
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy Release
22
33on :
44 workflow_run :
5- workflows : ["PHP Tests on Linux "]
5+ workflows : ["JS Test and DokuWiki Default Tasks "]
66 branches : [master]
77 types :
88 - completed
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : JS Test and DokuWiki Default Tasks
2+ on :
3+ push :
4+ pull_request :
5+ schedule :
6+ - cron : ' 15 6 20 * *'
7+ jobs :
8+ testJavaScript :
9+ name : JavaScript Tests
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Checkout
13+ uses : actions/checkout@v2
14+
15+ - name : Setup
16+ run : |
17+ yarn install
18+
19+ - name : Run Tests
20+ run : |
21+ yarn test
22+ yarn lint
23+ testPHP :
24+ uses : dokuwiki/github-action/.github/workflows/all.yml@main
You can’t perform that action at this time.
0 commit comments