Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/tests-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
POOL_OPTIONS: ${{ matrix.os == 'macos-latest' && '--pool forks' || '' }}
VITEST_MIN_THREADS: "1"
VITEST_MAX_THREADS: "4"
- name: shopify-dev-tools tests
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == env.DEFAULT_NODE_VERSION }}
run: pnpm nx test shopify-dev-tools --skip-nx-cache --output-style=stream
- name: Send Slack notification on failure
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844 # v1.23.0
if: ${{ failure() && !cancelled() }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
node-version: ${{ inputs.node-version }}
- name: Unit tests
run: pnpm test --output-style=stream
- name: shopify-dev-tools tests
run: pnpm nx test shopify-dev-tools --skip-nx-cache --output-style=stream
- name: Setup tmate session
if: ${{ failure() && inputs.debug-enabled }}
uses: mxschmitt/action-tmate@35b54afac29c97fb54faba5b513f8fbd1882f113 # v3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ jobs:
SHARD_OPTIONS: ${{ matrix.shard && format('--shard {0}', matrix.shard) || '' }}
VITEST_MIN_THREADS: "1"
VITEST_MAX_THREADS: "4"
- name: shopify-dev-tools tests
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == env.DEFAULT_NODE_VERSION }}
run: pnpm nx test shopify-dev-tools --skip-nx-cache --output-style=stream

unit-tests-gate:
name: "Unit tests"
Expand Down
Loading