ds4/.gitlab-ci.yml

48 lines
755 B
YAML
Raw Normal View History

2020-12-23 18:36:41 +01:00
image: node:latest
stages:
2020-12-27 13:33:53 +01:00
- test
- build
- deploy
2020-12-23 18:36:41 +01:00
2020-12-23 20:23:44 +01:00
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm/
2020-12-27 13:33:53 +01:00
lint:
stage: test
before_script:
- npm ci --cache .npm --prefer-offline
2020-12-23 20:15:28 +01:00
script:
- npm run lint
2020-12-27 13:33:53 +01:00
2020-12-23 20:15:28 +01:00
# Test:
# stage: Test
2020-12-23 20:07:28 +01:00
# script:
# - npm test
2020-12-27 13:33:53 +01:00
build:
stage: build
before_script:
- npm ci --cache .npm --prefer-offline
script:
- npm run build
artifacts:
paths:
- dist
expire_in: 1 week
deploy:
stage: deploy
dependencies:
- build
script:
- echo "Deploying to production..."
- ls dist
environment:
name: production
url: https://vtt.f3l.de/
only:
- master