generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* MWPW-155941: aem/odin update fragment * final mas builds * re-apply changes lost during merge * revert deps * make lit dependency path relative * re-apply changes lost during merge * updated commerce dep path * reverted change * MWPW-156983: AEM API: clone fragment feature * wip * wip * wip * milo auto block * wip * wip * improve editor modal + fix clone * update xlg segment id * ims workaround * update xgl tags * Update merch-datasource.js * Update merch-datasource.js * Update merch-datasource.js * Update merch-datasource.js * Update merch-datasource.js * Update merch-datasource.js * await cf cloning * await cf cloning * remove XLG logic * wip * refactor tests to include ignored reports in codecov * update unit tests and add github wf * remove deleted files * rename wf name so that it appears after Milo * renamed ds property * revert merch-card and apply only needed change * fix typo * update wf file * update wf file * update wf file * update wf file * troubleshoot * troubleshoot * troubleshoot * fix tests * troubleshoot * troubleshoot * update wf file * update wf file * update wf file * improve codecov * improve codecov * remove dead code * improve codecov * improve codecov * improve codecov * Update libs/features/mas/web-components/src/merch-datasource.js Co-authored-by: Axel Cureno Basurto <axelcureno@gmail.com> * PR feedbacks * merge changes * PR feedback and revert deeplink changes. * clean up ctas * pr feedbacks fix in datasource * fix codecov * PR feedback * remove unused img * remove source maps * removed unused line + fix img path * update datasource * PR feedbacks w.r.t error handling * PR feedbacks w.r.t error handling * PR feedbacks w.r.t error handling * PR feedbacks w.r.t error handling --------- Co-authored-by: Axel Cureno Basurto <axel@adobe.com> Co-authored-by: Axel Cureno Basurto <axelcureno@gmail.com>
- Loading branch information
1 parent
5a7baab
commit 190627d
Showing
61 changed files
with
2,820 additions
and
742 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,46 @@ | ||
name: MAS Unit Tests | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
jobs: | ||
run-tests: | ||
name: Running tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Set up Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install npm dependencies | ||
run: npm install | ||
working-directory: libs/features/mas | ||
|
||
- name: Run npm test | ||
run: npm test | ||
working-directory: libs/features/mas | ||
|
||
- name: Upload commerce coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
name: mas-commerce | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: libs/features/mas/commerce/coverage/lcov.info | ||
|
||
- name: Upload web-components coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
name: mas-web-components | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: libs/features/mas/web-components/coverage/lcov.info |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Oops, something went wrong.