Merge pull request #110 from znerol-forks/feat/master/ci-yarn-build

Run yarn build on travis
pull/120/head
Klaus 2021-01-16 13:22:33 +01:00 committed by GitHub
commit 84dd7d50fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@ env:
- CORE_BRANCH=stable20
- DB=mysql
- LINT=false
- BUILD=false
matrix:
include:
@ -27,6 +28,7 @@ matrix:
env: DB=pgsql
- php: 7.3
env: LINT=true
env: BUILD=true
- php: 7.2
env: DB=sqlite CORE_BRANCH=stable19
- php: 7.3
@ -82,3 +84,4 @@ script:
- yarn test
- if [[ "$LINT" = 'true' ]]; then yarn lint; fi
- if [[ "$LINT" = 'true' ]]; then yarn commitlint-travis; fi
- if [[ "$BUILD" = 'true' ]]; then yarn build; fi