Skip to content

Commit

Permalink
fix yaml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
beechnut committed May 17, 2023
1 parent f1336f3 commit f387364
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/a11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ on: [push]

jobs:
pa11y:
- name: Start up hugo server
run: docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.101.0 server
name: Building site and running pa11y-ci tests
runs-on: ubuntu-latest

- name: Run pa11y-ci
run: pa11y-ci --sitemap http://localhost:1313/sitemap.xml
steps:
- name: Start up hugo server
run: docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.101.0 server

- name: Run pa11y-ci
run: pa11y-ci --sitemap http://localhost:1313/sitemap.xml

0 comments on commit f387364

Please sign in to comment.