Skip to content
Snippets Groups Projects

Issue/2 test front end

Merged Albin Henriksson requested to merge issue/2-test-front-end into dev
2 files
+ 4
20
Compare changes
  • Side-by-side
  • Inline
Files
2
image: node:10
stages:
- install
- build
- quality
install:
stage: install
script:
@@ -18,20 +13,8 @@ install:
- client/.npm/
- 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:
stage: quality
stage: test
script:
- cd client
- npm run lint
@@ -39,7 +22,7 @@ linting:
- install
test:unit:
stage: quality
stage: test
script:
- cd client
- npm run test:coverage
Loading