Skip to content

Commit 9680662

Browse files
committed
chore: revert native tests to yarn workspace
prepare:ios/android and test:ios/android are not turbo tasks. These scripts don't use root-level binaries so yarn workspace works.
1 parent eeab467 commit 9680662

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/callable-native-unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
env:
2626
TEST_PACKAGE: ${{ matrix.package.name }}
2727
run: |
28-
yarn turbo run prepare:ios --filter=$TEST_PACKAGE
29-
yarn turbo run test:ios --filter=$TEST_PACKAGE
28+
yarn workspace $TEST_PACKAGE prepare:ios
29+
yarn workspace $TEST_PACKAGE test:ios
3030
- name: Run Android Tests
3131
working-directory: ./amplify-js
3232
env:
3333
TEST_PACKAGE: ${{ matrix.package.name }}
3434
run: |
35-
yarn turbo run prepare:android --filter=$TEST_PACKAGE
36-
yarn turbo run test:android --filter=$TEST_PACKAGE
35+
yarn workspace $TEST_PACKAGE prepare:android
36+
yarn workspace $TEST_PACKAGE test:android

yarn.lock

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)