From f7d4d46613af7c0ec3d435a2f65de30d0abf8e36 Mon Sep 17 00:00:00 2001 From: znerol Date: Tue, 22 Dec 2020 08:44:00 +0100 Subject: [PATCH] feat: Test build in travis --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index f951b4e..bb48007 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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