Skip to content

Commit

Permalink
feat: Add jest shards in a11y tests (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
taheramr authored Sep 11, 2023
1 parent d818775 commit 1374982
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ jobs:
a11yTest:
name: Components accessibility tests
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2, 3, 4, 5, 6]
needs:
- buildComponents
steps:
Expand All @@ -178,7 +181,7 @@ jobs:
- name: Unpack components artifacts
run: tar -xzf components-full.tgz
- name: Accessibility tests
run: npm run test:a11y
run: npm run test:a11y -- --shard=${{ matrix.shard }}/${{ strategy.job-total }}

demosTest:
name: Demos tests
Expand Down

0 comments on commit 1374982

Please sign in to comment.