This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
transporte/.gitlab-ci.yml

30 lines
323 B
YAML

image: node:alpine
stages:
- lint
- deploy
before_script:
- npm ci
cache:
paths:
- node_modules
lint:
stage: lint
script:
- npm run lint
pages:
stage: deploy
script:
- npm run build
- mv public public-vue
- mv dist public
artifacts:
paths:
- public
only:
- master