Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,43 @@ jobs:

- run:
name: build the jekyll site
command: REPLACE-ME-WITH-BUILD-COMMAND
command: bundle exec jekyll build

- run:
name: notify build is finished
command: echo "The build is finished!"

testlinks:
executor: ci-executor
steps:
- checkout

- run:
name: build dependencies
command: bundle install

- run:
name: build the jekyll site
command: bundle exec jekyll build

- run:
name: notify build is finished
command: echo "The build is finished!"

- run:
name: run html proofer
command: REPLACE-ME-WITH-SCRIPT

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
command: REPLACE-ME-WITH-SCRIPT
command: bundle exec htmlproofer ./_site --check-html


- run:
name: notify test is finished
command: echo "The test is completed!"

workflows:
version: 2.1

build_and_test:
jobs:
- build
- testlinks:
requires:
- build