We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8df9ec commit de56218Copy full SHA for de56218
1 file changed
.gitlab-ci.yml
@@ -2,6 +2,19 @@ stages:
2
- build
3
- test
4
5
+run_unit_tests:
6
+ image: docker-registry.ebrains.eu/model-catalog/node:22-alpine
7
+ stage: test
8
+ rules:
9
+ - changes:
10
+ - apps/model_catalog/**/*
11
+ script:
12
+ - cd apps/model_catalog
13
+ - npm ci
14
+ - npm run test
15
+ tags:
16
+ - docker-runner
17
+
18
run_cypress_tests:
19
image: cypress/browsers:node12.14.1-chrome85-ff81
20
stage: test
0 commit comments