hugo-geekblog/.woodpecker/test.yml

50 lines
1.3 KiB
YAML
Raw Normal View History

2023-08-25 23:35:44 +02:00
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
- name: eslint
2023-08-25 23:35:44 +02:00
image: docker.io/library/node:lts
commands:
- npm install --quiet --no-progress
2023-08-25 23:35:44 +02:00
- npm run lint
environment:
FORCE_COLOR: "true"
- name: assets
2023-08-25 23:35:44 +02:00
image: docker.io/library/node:lts
commands:
- npm install --quiet --no-progress
2023-08-25 23:35:44 +02:00
- npm run build
environment:
FORCE_COLOR: "true"
- name: testbuild
image: quay.io/thegeeklab/hugo:0.121.2
2023-08-25 23:35:44 +02:00
commands:
- mkdir -p exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/${CI_REPO_NAME}
- hugo --panicOnWarning -s exampleSite/ -b http://localhost:8000/
- name: html-validation
2023-08-25 23:35:44 +02:00
image: quay.io/thegeeklab/vnu
group: test
commands:
- vnu --skip-non-html --also-check-css --errors-only --filterfile .vnuignore exampleSite/public
- name: link-validation
2023-09-27 21:52:47 +02:00
image: docker.io/lycheeverse/lychee
2023-08-25 23:35:44 +02:00
group: test
commands:
2023-09-27 21:52:47 +02:00
- lychee --no-progress --format detailed exampleSite/content/ README.md
2023-08-25 23:35:44 +02:00
- name: page-validation
image: quay.io/thegeeklab/lhci:0.13
2023-08-25 23:35:44 +02:00
group: test
commands:
- lhci autorun
environment:
2023-10-02 13:34:07 +02:00
LHCI_SERVER_URL: https://ci-artifact.rknet.org/${CI_REPO_NAME}/