Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix nightly build #3434

Merged
merged 5 commits into from
Apr 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,25 +178,31 @@ jobs:
<<: *defaults
<<: *unix_nightly_box
steps:
- browser-tools/install-browser-tools
- checkout
- <<: *restore_dependency_cache_unix
- run: npm run build
- browser-tools/install-browser-tools
# install ACT rules
# install first as for some reason installing a single package
# also re-installs all repo dependencies as well
- run: npm install act-rules/act-rules.github.io#master
- run: npm run test:apg
- run: npx browser-driver-manager install chromedriver --verbose
- run: npm run build
- run: npm run test:act

# Run the test suite for nightly builds.
test_nightly_aria_practices:
<<: *defaults
<<: *unix_nightly_box
steps:
- browser-tools/install-browser-tools
- checkout
- <<: *restore_dependency_cache_unix
- run: npm run build
- browser-tools/install-browser-tools
# install ARIA practices
# install first as for some reason installing a single package
# also re-installs all repo dependencies as well
- run: npm install w3c/aria-practices#main
- run: npx browser-driver-manager install chromedriver --verbose
- run: npm run build
- run: npm run test:apg

# Test api docs can be built
Expand Down Expand Up @@ -408,4 +414,4 @@ workflows:
- dependencies_unix
- test_nightly_aria_practices:
requires:
- dependencies_unix
- dependencies_unix