From b54702937957967a3a40349a091fd6fdadb9457e Mon Sep 17 00:00:00 2001 From: konrad Date: Fri, 23 Jul 2021 11:13:15 +0000 Subject: [PATCH] Run frontend-tests with dist in ci (#605) Co-authored-by: kolaente Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/605 Co-authored-by: konrad Co-committed-by: konrad --- .drone.yml | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index cdd477476..d2fc35773 100644 --- a/.drone.yml +++ b/.drone.yml @@ -67,7 +67,7 @@ steps: depends_on: - dependencies - - name: build + - name: lint image: node:16 pull: true environment: @@ -75,7 +75,29 @@ steps: CYPRESS_CACHE_FOLDER: .cache/cypress/ commands: - yarn run lint - - yarn run build + depends_on: + - dependencies + + # Building in dev mode to avoid the service worker for testing + - name: build-dev + image: node:16 + pull: true + environment: + YARN_CACHE_FOLDER: .cache/yarn/ + CYPRESS_CACHE_FOLDER: .cache/cypress/ + commands: + - yarn build --mode dev + depends_on: + - dependencies + + - name: build-prod + image: node:16 + pull: true + environment: + YARN_CACHE_FOLDER: .cache/yarn/ + CYPRESS_CACHE_FOLDER: .cache/cypress/ + commands: + - yarn build --dest dist-prod depends_on: - dependencies @@ -88,7 +110,7 @@ steps: - dependencies - name: test-frontend - image: cypress/browsers:node12.18.3-chrome87-ff82 + image: cypress/browsers:node14.17.0-chrome91-ff89 pull: true environment: CYPRESS_API_URL: http://api:3456/api/v1 @@ -97,11 +119,12 @@ steps: CYPRESS_CACHE_FOLDER: .cache/cypress/ CYPRESS_DEFAULT_COMMAND_TIMEOUT: 60000 commands: - - sed -i 's/localhost/api/g' public/index.html - - yarn serve & npx wait-on http://localhost:8080 + - sed -i 's/localhost/api/g' dist/index.html + - yarn serve:dist & npx wait-on http://localhost:8080 - yarn test:frontend --browser chrome depends_on: - dependencies + - build-dev - name: upload-test-results image: plugins/s3:1