-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1482 from dequelabs/release-v6.4.0
chore(cauldron): Release 6.4.0
- Loading branch information
Showing
133 changed files
with
5,202 additions
and
3,400 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,34 @@ | ||
name: Update Browserslist Database | ||
|
||
on: | ||
schedule: | ||
# run on the 1st of every month | ||
- cron: '15 3 1 * *' | ||
workflow_call: | ||
|
||
jobs: | ||
|
||
update-browserlist-db: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Update Browserlist Database | ||
run: | | ||
git config user.name github-actions | ||
git config user.email github-actions@github.com | ||
npx update-browserslist-db@latest | ||
cd packages/react && npx update-browserslist-db@latest | ||
cd ../styles && npx update-browserslist-db@latest | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
add-paths: | | ||
yarn.lock | ||
packages/*/yarn.lock | ||
commit-message: 'chore: update browserlist database' | ||
branch: update-browserlist-database | ||
base: develop | ||
title: 'chore: update browserlist database' | ||
body: | | ||
This patch updates any outdated browserlist databases. | ||
This PR was opened automatically by a robot :robot: :tada: |
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 |
---|---|---|
|
@@ -4,4 +4,7 @@ coverage | |
packages/react/lib | ||
.DS_Store | ||
yarn-error.log | ||
.vscode/ | ||
.vscode/ | ||
|
||
playwright/.cache | ||
e2e/test-results |
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
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
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,20 @@ | ||
ARG playwright_version=1.44.0 | ||
FROM mcr.microsoft.com/playwright:v$playwright_version-jammy | ||
|
||
WORKDIR /app | ||
COPY ./yarn.lock ./ | ||
COPY ./tsconfig.json ./ | ||
COPY ./e2e ./e2e | ||
COPY ./packages ./packages | ||
COPY ./playwright ./playwright | ||
COPY ./playwright-ct.config.ts ./playwright-ct.config.ts | ||
RUN yarn add --prefix \ | ||
playwright@$playwright_version \ | ||
@playwright/test@$playwright_version \ | ||
@playwright/experimental-ct-react17@$playwright_version \ | ||
react@^17 \ | ||
react-dom@^17 \ | ||
@fontsource/roboto@^4.5.1 \ | ||
&& rm -rf playwright/.cache | ||
|
||
ENTRYPOINT ["/app/e2e/entrypoint.sh"] |
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,2 @@ | ||
#!/bin/bash | ||
/app/node_modules/.bin/playwright test -c playwright-ct.config.ts "$@" |
Oops, something went wrong.