Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ agent:
machine:
type: e1-standard-2
os_image: ubuntu1804

global_job_config:
prologue:
commands:
Expand Down Expand Up @@ -80,14 +80,18 @@ blocks:
- name: "Run Unit tests"
task:
jobs:
- name: phpunit
commands:
- checkout
- cache restore
- composer install
- npm install
# Run the unit tests from the phpunit binary in vendor folder
- ./vendor/bin/phpunit
- name: phpunit
commands:
- checkout
- cache restore
- composer install
- npm install
# Run the unit tests from the phpunit binary in vendor folder
- ./vendor/bin/phpunit --log-junit junit.xml
epilogue:
always:
commands:
- test-results publish junit.xml

- name: "Run Browser tests"
task:
Expand Down