Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
13 changes: 9 additions & 4 deletions .github/workflows/auto-tests-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,20 @@ jobs:
run: |
pnpm package run build

- name: Build modules
run: |
for module in modules/*/; do
echo "Building module: $module"
cd "$module"
pnpm run build
cd - > /dev/null
done

- name: Run tests
run: |
pnpm --filter contection-tests test
pnpm --filter contection-tests test:types

- name: Build package
run: |
pnpm package run build

- name: Set summary
run: |
REACT_VERSION=$(node -p "require('react/package.json').version")
Expand Down