This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/.gitlab-ci.yml
2021-05-23 00:16:10 +02:00

24 lines
313 B
YAML

image: node:alpine
cache:
paths:
- node_modules/
- .yarn
before_script:
- apt-get update -qq && apt-get install
# stages order.
stages:
- build
Build:
stage: build
tags:
- node
before_script:
- yarn config set cache-folder .yarn
- yarn install
script:
- yarn eleventy