Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/floppy/jekyll-test
A highly opinionated test configuration for Jekyll sites
https://github.com/floppy/jekyll-test
jekyll rake static-site-generator testing
Last synced: about 14 hours ago
JSON representation
A highly opinionated test configuration for Jekyll sites
- Host: GitHub
- URL: https://github.com/floppy/jekyll-test
- Owner: Floppy
- License: mit
- Created: 2017-08-17T11:14:40.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T09:07:04.000Z (over 2 years ago)
- Last Synced: 2024-10-14T19:22:16.105Z (25 days ago)
- Topics: jekyll, rake, static-site-generator, testing
- Language: Ruby
- Size: 96.7 KB
- Stars: 21
- Watchers: 5
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Jekyll-Test
`jekyll-test` is a highly opinionated test configuration for Jekyll sites to let you create well-formed sites with minimal configuration, built on top of [html-proofer](https://github.com/gjtorikian/html-proofer).
It provides two rake tasks:
`jekyll:check` will test your site for HTML validity, internal link correctness, alt tags, OpenGraph validity, https usage, and a load more. It will complain about as much as it can. You want this to pass.
`jekyll:check_external_links` will check all outgoing links as well. This is a separate task as this often fails due to network errors, etc, and you don't want to depend on it passing. Use it for information only.
## Requirements
* Ruby 2.5 or higher (`ruby -v` to check version)
* Bundler (`gem install bundler` if it's not there)## Usage
Add `jekyll-test` to your site's `Gemfile` (or just create the file with the following content if it doesn't exist) and run `bundle`:
```ruby
source "https://rubygems.org"gem 'rake'
gem 'github-pages'group :test do
gem 'jekyll-test'
end
```Then add this to `Rakefile` (or create a file with just this in it if you don't have one):
```ruby
require 'jekyll/test/tasks'
```We suggest making `jekyll:check` your default task by adding this line to `Rakefile` as well:
```rake
task default: "jekyll:check"
```You can then run `rake` and bingo, your site will be tested with `html-proofer`.
### Travis configuration
To configure a travis build to run these tests, run:
```
gem install travis
rake jekyll:configure:travis
```This will initialise your repo for use on travis, if necessary, then write a multi-build configuration which will run both checks together. The link check is allowed to fail, so it will not impact your CI success / failure.
WARNING: This will aggressively overwrite bits of `.travis.yml`, so if you already have one, make sure it's committed or backed up so you can check the changes.
It's a good idea to run the task with each new release of this gem to get the latest configuration.
## Coming soon
* spellchecking
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/Floppy/jekyll-test. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## Code of Conduct
Everyone interacting in the Jekyll::Test project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/jekyll-test/blob/master/CODE_OF_CONDUCT.md).