Skip to content

Commit

Permalink
Merge branch 'main' into update-stylelint-15.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
howard-e committed May 8, 2024
2 parents 55ba277 + e21ef7f commit 9ee3b8a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
cache: npm

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/lint-css.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ jobs:
with:
cache: npm

- uses: xt0rted/stylelint-problem-matcher@v1

- name: Install npm dependencies
run: npm ci

- name: Stylelint
run: npm run lint:css
run: npx stylelint "**/*.css" -f github

- name: Prettier
run: npx prettier --check "**/*.css"
4 changes: 4 additions & 0 deletions test/tests/disclosure_navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ ariaTest(

for (let l = 0; l < links.length; l++) {
await buttons[b].click();
await t.context.session.executeScript(function () {
const link = arguments[0];
link.scrollIntoView({ block: 'center' });
}, links[l]);
await links[l].click();

t.is(
Expand Down

0 comments on commit 9ee3b8a

Please sign in to comment.