Merge pull request #107 from atelierdesmedias/fix-build #404
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HTML Proofer | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Image Magick | |
run: sudo apt-get install imagemagick | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Jekyll build | |
env: | |
JEKYLL_ENV: production | |
run: bundle exec jekyll build --destination _proof | |
- name: HTML proofer | |
env: | |
JEKYLL_ENV: production | |
run: bundle exec rake html_proofer |