Skip to content

Commit 3504327

Browse files
committed
wip
1 parent 637fe10 commit 3504327

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.buildkite/pipeline.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ steps:
156156
- yarn turbo run --filter='./packages/signals/*' lint
157157
- echo "+++ Run Tests"
158158
- yarn turbo run --filter='./packages/signals/*' test
159+
- echo "+++ Run Integration Tests"
160+
- yarn turbo run --filter='./packages/signals/*' test:int
159161
plugins:
160162
- ssh://[email protected]/segmentio/cache-buildkite-plugin#v2.0.0:
161163
key: "v1.1-cache-dev-{{ checksum 'yarn.lock' }}"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"build": "turbo run build --filter='./packages/**'",
2121
"watch": "turbo run watch --filter='./packages/**'",
2222
"dev": "yarn workspace @playground/next-playground run dev",
23-
"prepush": "yarn lint && CI=true yarn test --colors --silent",
23+
"prepush": "turbo run lint --filter='...[master...HEAD]' && CI=true yarn turbo run test --filter='...[master...HEAD] -- --colors --silent'",
2424
"postinstall": "husky install",
2525
"changeset": "changeset",
2626
"update-versions-and-changelogs": "changeset version && yarn version-run-all && bash scripts/update-lockfile.sh",

packages/signals/signals-integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"scripts": {
99
".": "yarn run -T turbo run --filter=@internal/signals-integration-tests...",
1010
"build": "webpack",
11-
"test": "playwright test",
11+
"test:int": "playwright test",
1212
"test:vanilla": "playwright test src/tests/signals-vanilla",
1313
"test:perf": "playwright test src/tests/performance",
1414
"test:custom": "playwright test src/tests/custom",

0 commit comments

Comments
 (0)