Skip to content

Commit 182b3de

Browse files
committed
Update GitHub workflows
1 parent a4085ee commit 182b3de

File tree

3 files changed

+25
-72
lines changed

3 files changed

+25
-72
lines changed

.github/workflows/deployRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Release
22

33
on:
44
workflow_run:
5-
workflows: ["PHP Tests on Linux"]
5+
workflows: ["JS Test and DokuWiki Default Tasks"]
66
branches: [master]
77
types:
88
- completed

.github/workflows/phpTestLinux.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.github/workflows/tests.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

0 commit comments

Comments
 (0)