Skip to content

Commit fa84ef9

Browse files
committed
Fixed workflow when PR
1 parent 439d3ea commit fa84ef9

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

.github/workflows/linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Check for Type Errors
22

33
on:
4+
pull_request:
45
push: # (or pull requests)
56
paths:
67
- '.github/workflows/**'

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Check & fix styling
22

33
on:
4+
pull_request:
45
push: # (or pull requests)
56
paths:
67
- '.github/workflows/**'

.github/workflows/phpunit.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Testing Code with PHPUnit
22

33
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
pull_request:
47
push: # (or pull requests)
58
paths:
69
- '.github/workflows/**'

.github/workflows/spellcheck.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Spell check
22

33
on:
4+
pull_request:
45
push: # (or pull requests)
56
paths:
67
- '.github/workflows/**'

0 commit comments

Comments
 (0)