-
Notifications
You must be signed in to change notification settings - Fork 174
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
[Release] Stage to Main #2842
[Release] Stage to Main #2842
Changes from all commits
0d6aadb
e3ebbae
5a7baab
190627d
3f32a64
8ea4f29
510f7a6
99a0fd7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ | |
position: absolute; | ||
right: 0; | ||
top: 0; | ||
z-index: -1; | ||
overflow: hidden; | ||
} | ||
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
Large diffs are not rendered by default.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File ignored by default. Use a negated ignore pattern (like "--ignore-pattern '!<relative/path/to/filename>'") to override.