Skip to content
Snippets Groups Projects
Commit d73836db authored by Albin Henriksson's avatar Albin Henriksson
Browse files

#2: Removed unused stages

parent 243f7d90
No related branches found
No related tags found
2 merge requests!8Issue/2 test front end,!6Issue/2 test front end
This commit is part of merge request !6. Comments created here will be created in the context of that merge request.
stages: stages:
- setup - install
- test - test
include: include:
- local: .gitlab/server.gitlab-ci.yml - local: .gitlab/server.gitlab-ci.yml
- local: .gitlab/client.gitlab-ci.yml
image: node:10 image: node:10
stages:
- install
- build
- quality
install: install:
stage: install stage: install
script: script:
...@@ -18,20 +13,8 @@ install: ...@@ -18,20 +13,8 @@ install:
- client/.npm/ - client/.npm/
- client/node_modules/ - client/node_modules/
build:
stage: build
script:
- cd client
- CI=false npm run build
artifacts:
paths:
- client/build
expire_in: 60 mins
dependencies:
- install
linting: linting:
stage: quality stage: test
script: script:
- cd client - cd client
- npm run lint - npm run lint
...@@ -39,7 +22,7 @@ linting: ...@@ -39,7 +22,7 @@ linting:
- install - install
test:unit: test:unit:
stage: quality stage: test
script: script:
- cd client - cd client
- npm run test:coverage - npm run test:coverage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment