From 3e50e404ed88da91bde1e466256019f6726b5f5f Mon Sep 17 00:00:00 2001 From: Alex Munoz Date: Fri, 10 Jun 2022 17:38:10 +0200 Subject: [PATCH] refactor: update templates --- templates/npm/npm-e2e.gitlab-ci.yml | 5 +++++ templates/npm/npm-test.gitlab-ci.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/templates/npm/npm-e2e.gitlab-ci.yml b/templates/npm/npm-e2e.gitlab-ci.yml index 04b7b53..960226e 100644 --- a/templates/npm/npm-e2e.gitlab-ci.yml +++ b/templates/npm/npm-e2e.gitlab-ci.yml @@ -8,3 +8,8 @@ fi script: - npm run ci:e2e + artifacts: + expire_in: '7d' + reports: + junit: + - 'e2e-reports/**/**.xml' diff --git a/templates/npm/npm-test.gitlab-ci.yml b/templates/npm/npm-test.gitlab-ci.yml index ce4f206..cec278e 100644 --- a/templates/npm/npm-test.gitlab-ci.yml +++ b/templates/npm/npm-test.gitlab-ci.yml @@ -8,3 +8,8 @@ fi script: - npm run ci:test + artifacts: + expire_in: '7d' + reports: + junit: + - 'test-reports/**/**.xml'