aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-11 17:17:33 +0200
committerHampusM <hampus@hampusmat.com>2021-07-11 17:17:33 +0200
commita4c70c283c0a77e123694fb2d3687f2efff3eef7 (patch)
tree7f010edf6967f47d04ab10c69e4799201ef0fbe9 /.gitlab-ci.yml
parentce654948ab1d611ae01783dc4788551abdd43370 (diff)
Specified stage in the Gitlab CI test job
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7752165..56751fc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,10 +5,12 @@ cache:
- node_modules/
test:
+ stage: test
before_script:
- apt-get update -y -qq
- apt-get install -y -qq apt-utils
- apt-get install -y -qq git libpcre3 libpcre2-posix0 libkrb5-3 libk5crypto3 libcom-err2 libssl1.1 libssl-dev
script:
- yarn install
- - yarn test \ No newline at end of file
+ - yarn test
+