-
Notifications
You must be signed in to change notification settings - Fork 3
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 #178 from whereby/development
Merge development branch
- Loading branch information
Showing
215 changed files
with
62,495 additions
and
7,442 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"sourceType": "unambiguous", | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"chrome": 100, | ||
"safari": 15, | ||
"firefox": 91 | ||
} | ||
} | ||
], | ||
"@babel/preset-typescript", | ||
"@babel/preset-react" | ||
], | ||
"plugins": [] | ||
} | ||
|
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,48 @@ | ||
### Description | ||
|
||
**Summary:** | ||
|
||
<!-- Provide a brief overview of what this PR does or aims to achieve. --> | ||
|
||
**Related Issue:** | ||
|
||
<!-- Link to the GitHub issue that this PR addresses, if applicable. --> | ||
|
||
### Testing | ||
|
||
<!-- Describe the steps to test the changes made in this PR. Include details | ||
about the test environment, any specific configurations or data required, and | ||
the expected outcomes. --> | ||
|
||
### Screenshots/GIFs (if applicable) | ||
|
||
<!-- Include any screenshots or GIFs that help visualize the changes made, | ||
especially for UI-related changes. --> | ||
|
||
### Checklist | ||
|
||
- [ ] My code follows the project's coding standards. | ||
- [ ] I have written unit tests (if applicable). | ||
- [ ] I have updated the documentation (if applicable). | ||
- [ ] By submitting this pull request, I confirm that my contribution is made | ||
under the terms of the MIT license. | ||
|
||
### Dependency Updates | ||
|
||
<!-- If this PR includes dependency updates, please list them here along with | ||
the reason for the update. --> | ||
|
||
### Reviewers | ||
|
||
<!-- Tag the relevant team members or maintainers who should review this PR. | ||
--> | ||
|
||
@havardholvik | ||
@kevinwhereby | ||
@nandito | ||
@thyal | ||
|
||
### Additional Information | ||
|
||
<!-- Add any additional information that you think is relevant for the review, | ||
such as context, background, or links to related resources. --> |
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,35 @@ | ||
name: Playwright Tests | ||
on: | ||
push: | ||
branches: [main, development] | ||
pull_request: | ||
branches: [main, development] | ||
jobs: | ||
test: | ||
timeout-minutes: 60 | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "yarn" | ||
cache-dependency-path: | | ||
yarn.lock | ||
test/sample-app/yarn.lock | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Install sample-app dependencies | ||
run: yarn install:e2e-sample-app | ||
- name: Install Playwright Browsers | ||
run: yarn playwright install --with-deps | ||
- name: Run Playwright tests | ||
run: yarn playwright test | ||
env: | ||
WHEREBY_API_KEY: ${{ secrets.WHEREBY_API_KEY }} | ||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: playwright-report | ||
path: playwright-report/ | ||
retention-days: 30 |
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
*.env | ||
*.log | ||
|
||
dist/ | ||
node_modules/ | ||
*.log | ||
storybook-static/ | ||
yalc.lock | ||
.yalc/ | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ |
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,25 @@ | ||
module.exports = { | ||
stories: ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"], | ||
stories: ["../src/**/*.stories.@(js|jsx|ts|tsx)"], | ||
addons: ["@storybook/addon-links", "@storybook/addon-essentials"], | ||
framework: "@storybook/web-components", | ||
framewkork: "@storybook/react", | ||
|
||
webpackFinal: async (config) => { | ||
config.module.rules.push({ | ||
resolve: { | ||
fullySpecified: false, | ||
extensions: [".js", ".ts", ".tsx"], | ||
}, | ||
}); | ||
|
||
return config; | ||
}, | ||
|
||
framework: { | ||
name: "@storybook/react-webpack5", | ||
options: {} | ||
}, | ||
|
||
docs: { | ||
autodocs: true | ||
} | ||
}; |
Oops, something went wrong.