2021-05-19 10:24:42 +02:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: build
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint checks
|
|
|
|
image: node:14.16-alpine
|
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
- npm run lint
|
2021-05-19 23:47:51 +02:00
|
|
|
- name: spellchecker checks
|
|
|
|
image: polpetta/spellchecker
|
|
|
|
commands:
|
|
|
|
- ./tools/spellchecker.sh en
|
2021-05-19 10:24:42 +02:00
|
|
|
- name: hugo build
|
|
|
|
image: klakegg/hugo:0.82.1-ext-alpine-ci
|
|
|
|
commands:
|
|
|
|
- hugo
|