-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No qa needed
- Loading branch information
Showing
11 changed files
with
44 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,15 @@ defaults: &defaults | |
working_directory: ~/axe-core-gems | ||
|
||
orbs: | ||
browser-tools: circleci/[email protected].3 | ||
browser-tools: circleci/[email protected].8 | ||
node: circleci/[email protected] | ||
|
||
commands: | ||
bootstrap: | ||
description: Install dependencies and bootstrap packages | ||
steps: | ||
- checkout | ||
- browser-tools/install-browser-tools: | ||
# TODO: remove when chromedriver downloads are fixed | ||
chrome-version: 116.0.5845.96 | ||
- browser-tools/install-browser-tools | ||
- node/install: | ||
node-version: "16.13" | ||
- run: gem install bundler # setup bundler | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
name: Sync master/develop branches | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
create_sync_pull_request: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 2 | ||
steps: | ||
- uses: dequelabs/action-sync-branches@v1 | ||
- uses: dequelabs/action-sync-branches@v1.0.1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
github-token: ${{ secrets.PAT }} | ||
pr-title: "chore: merge master into develop" | ||
pr-reviewers: adnoc,michael-siek,stephenmathieson | ||
pr-team-reviewers: axe-api-team | ||
pr-labels: chore | ||
pr-template: .github/PULL_REQUEST_TEMPLATE.md | ||
pr-template: .github/PULL_REQUEST_TEMPLATE.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Axe | ||
module API | ||
autoload :Run, "axe/api/run" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
"name": "axe-core-api", | ||
"license": "MPL-2.0", | ||
"dependencies": { | ||
"axe-core": "^4.9.1" | ||
"axe-core": "^4.10.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# this version is used by all the packages | ||
|
||
module AxeCoreGems | ||
VERSION = "4.9.1" | ||
VERSION = "4.10.0" | ||
end |