Delete CNAME #61
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: Build, Test | |
on: push | |
jobs: | |
build-test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Ruby 2.6 # See https://www.ruby-lang.org/en/downloads/branches/ | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 # Not needed with a .ruby-version file | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Cache HTMLProofer | |
id: cache-htmlproofer | |
uses: pat-s/[email protected] # See https://github.com/actions/cache/issues/92#issuecomment-754100905 | |
with: | |
path: tmp/.htmlproofer | |
key: ${{ runner.os }}-htmlproofer # Would like to share this between branches | |
- name: Build and test | |
run: | | |
bundle exec rake build | |
bundle exec rake html:check_mailto_awesome | |
bundle exec rake html:check | |
bundle exec rake html:web_puc |