From 2e18538ba1bebb752fd7ec7be5b307196c0de8b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Rebours?= Date: Tue, 18 May 2021 14:03:33 +0200 Subject: [PATCH] change docker image for browser testing --- .gitlab-ci.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5c86aa..2d842ca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,7 @@ stages: + - lint - test + - test-browser - deploy image: node:14 @@ -13,12 +15,18 @@ cache: paths: - .npm/ +lint: + stage: lint + script: npm run lint + test: stage: test - script: - - npm run lint - - npm run test - - npm run test:browser + script: npm run test + +test-browser: + image: nexus-docker.tardis.seald.io/seald/docker-browser-testing:CHROME_88 + stage: test-browser + script: npm run test:browser deploy: stage: deploy