forked from tykayn/funky-framadate-front
17 lines
259 B
YAML
17 lines
259 B
YAML
build:
|
|
image: node:12
|
|
before_script:
|
|
- npm ci
|
|
script:
|
|
- npm run build
|
|
artifacts:
|
|
paths:
|
|
- dist/
|
|
test:
|
|
image: node:12
|
|
type: test
|
|
before_script:
|
|
- npm ci
|
|
script:
|
|
- npm run test
|