Skip to content

Commit

Permalink
Merge branch 'main' into main-jd-enhance-PR-template
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond authored Dec 19, 2022
2 parents 3ae7010 + c661309 commit ae57d9c
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 103 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/pa11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ jobs:
- name: Run accessibility tests
run: npm run docs-accessibility

- name: Generate HTML accessibility results
run: npm run docs-pa11y-html
if: failure()

- name: Upload accessibility results
uses: actions/upload-artifact@v3
if: failure()
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ Thumbs.db
/js/coverage/
/node_modules/
/.pa11y/
/pa11y-ci-results.json
/.github/release-drafter.yml

# Storybook
Expand Down
2 changes: 1 addition & 1 deletion build/.pa11yci.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"reporters": [
"cli",
["json", { "fileName": "./pa11y-ci-results.json" }]
["pa11y-ci-reporter-html", {"destination": ".pa11y", "includeZeroIssues": true}]
],
"runners": [
"axe"
Expand Down
127 changes: 34 additions & 93 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"docs-vnu": "node build/vnu-jar.js",
"docs-lint": "npm run docs-vnu",
"docs-pa11y": "pa11y-ci --config build/.pa11yci.json --sitemap http://localhost:9001/sitemap.xml --sitemap-find https://boosted.orange.com --sitemap-replace http://localhost:9001",
"docs-pa11y-html": "pa11y-ci-reporter-html -d .pa11y",
"docs-accessibility": "npm-run-all --parallel --race docs-serve-only docs-pa11y",
"docs-serve": "hugo server --port 9001 --disableFastRender",
"docs-serve-only": "sirv _site --no-clear --port 9001",
Expand Down Expand Up @@ -156,7 +155,7 @@
"npm-run-all": "^4.1.5",
"ods-storybook-theme": "^0.1.0",
"pa11y-ci": "^3.0.1",
"pa11y-ci-reporter-html": "^3.0.3",
"pa11y-ci-reporter-html": "^5.0.2",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"rollup": "^2.79.1",
Expand Down
3 changes: 1 addition & 2 deletions scss/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@

.nav-link:hover,
.nav-link:focus {
color: var(--#{$prefix}nav-tabs-link-hover-color);
outline-color: currentcolor;
outline-color: $accessible-orange;
}
}
// End mod
Expand Down

0 comments on commit ae57d9c

Please sign in to comment.