Skip to content

Commit

Permalink
run tanstack tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Feb 10, 2025
1 parent 0caf057 commit f9c7b7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@ jobs:
- name: "Next.js: Test"
run: yarn workspace @integration-test/nextjs run test | tee $GITHUB_STEP_SUMMARY; exit ${PIPESTATUS[0]}

- name: "TanStack Start: Build"
run: yarn workspace @integration-test/tanstack-start run build

- name: "Next.js: Test"
run: yarn workspace @integration-test/tanstack-start run test | tee $GITHUB_STEP_SUMMARY; exit ${PIPESTATUS[0]}

- name: "Vite Streaming: Build"
run: yarn workspace @integration-test/vite-streaming run build
- name: "Vite Streaming: Test"
Expand Down
3 changes: 2 additions & 1 deletion integration-test/tanstack-start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"dev": "rm -rvf node_modules/.vinxi node_modules/.cache node_modules/.tanstack-start .output .vinxi && vinxi dev",
"build": "rm -rvf node_modules/.vinxi node_modules/.cache node_modules/.tanstack-start .output .vinxi && vinxi build",
"start": "vinxi start"
"start": "vinxi start",
"test": "yarn test:tanstack"
},
"dependencies": {
"@apollo/client": "^3.12.4",
Expand Down

0 comments on commit f9c7b7b

Please sign in to comment.