Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-02-18 11:22:24 +0300
committerDillon <dillonzq@outlook.com>2020-02-18 11:22:24 +0300
commit4b3addf634eabaf8dffd75f4b808cba55dd42b19 (patch)
tree6f58704e227305642a23027e52a61fa493ed259b /.circleci
parentd8681cd4896f543ce4a58cd1d9ea39a5e4e82192 (diff)
fix(check): fix some html check bugs
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index d7bd8a8..c34ef83 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -7,7 +7,7 @@ jobs:
theme-path:
type: string
docker:
- - image: cibuilds/hugo:0.64
+ - image: cibuilds/hugo:0.62
working_directory: ~/LoveIt
steps:
- checkout
@@ -15,10 +15,9 @@ jobs:
- run: git submodule update --init
- run:
command: |
- cd << parameters.example-site-path >>
- pwd
- HUGO_ENV=production hugo --themesDir << parameters.theme-path >> -v --minify --gc
- htmlproofer public --allow-hash-href --empty-alt-ignore --disable-external
+ cd << parameters.example-site-path >> && pwd
+ HUGO_ENV=production hugo --themesDir << parameters.theme-path >> -v --gc
+ htmlproofer public --check-html --allow-hash-href --empty-alt-ignore --disable-external
workflows:
build-check-exampleSite:
jobs: