Skip to content

Commit

Permalink
Merge pull request #3779 from 18F/eoc/fix-pa11y-ci
Browse files Browse the repository at this point in the history
Fix: get pa11y running in CircleCI again
  • Loading branch information
echappen authored Oct 25, 2023
2 parents 7ec06ad + 752a765 commit cc8de31
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:

- restore_cache:
keys:
- v1-dependencies-npm-{{ checksum "package-lock.json" }}
- v2-dependencies-npm-{{ checksum "package-lock.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-npm-
- v2-dependencies-npm-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-npm-{{ checksum "package-lock.json" }}
key: v2-dependencies-npm-{{ checksum "package-lock.json" }}
- run: npm run uswds-build
- run: bundle exec jekyll build
- run: npm run htmlproofer
Expand Down
9 changes: 9 additions & 0 deletions .pa11yci
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"defaults": {
"chromeLaunchConfig": {
"args": [
"--no-sandbox"
]
}
}
}

0 comments on commit cc8de31

Please sign in to comment.