comprofix.com/.gitlab-ci.yml

17 lines
238 B
YAML
Raw Normal View History

2022-08-07 13:37:05 +10:00
stages:
- build-eleventy
build-eleventy:
stage: build-eleventy
image: node:latest
cache:
paths:
- node_modules/
script:
- npm install
- npm run build
artifacts:
paths:
- _site/
only:
- master