Ablism & inspiration porn #41
Workflow file for this run
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: a11ywatch | |
on: [pull_request] | |
jobs: | |
build: | |
name: Building site and running a11ywatch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source. | |
uses: actions/checkout@v2 | |
- name: Install jekyll site dependencies. | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
bundler-cache: true | |
- name: Install npm dependencies. | |
run: npm ci | |
- name: Start up jekyll server. | |
run: bundle exec jekyll serve --detach -c _config.yml,_config_local.yml | |
- uses: a11ywatch/[email protected] | |
with: | |
WEBSITE_URL: http://localhost:4000 | |
SITE_WIDE: true | |
SITEMAP: true | |
LIST: true |