Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
19978a7
fix: tests
moreorover Nov 8, 2025
cd98ec0
fix: tests
moreorover Nov 8, 2025
6f20ff6
fix: tests
moreorover Nov 8, 2025
b7e6568
initial commit
moreorover Nov 8, 2025
d48592f
Merge branch 'main' into fix/tests
moreorover Nov 8, 2025
d73c915
fix: setup pnpm
moreorover Nov 8, 2025
4d33b3d
fix: setup git user
moreorover Nov 8, 2025
a17d400
fix: setup git user
moreorover Nov 8, 2025
f744cfa
fix: coverage
moreorover Nov 8, 2025
c486e3b
remove .idea
moreorover Nov 8, 2025
baa7340
remove .idea
moreorover Nov 8, 2025
78dc847
run tests from root
moreorover Nov 8, 2025
1e112f3
increase test timeout
moreorover Nov 8, 2025
4478fa0
fix: codecov
moreorover Nov 8, 2025
c2732c6
fix: codecov
moreorover Nov 9, 2025
b1608a3
fix: coverage skip test files
moreorover Nov 9, 2025
86c08d1
Merge branch 'main' into fix/tests
moreorover Nov 10, 2025
dffee34
Merge branch 'main' into fix/tests
AmanVarshney01 Nov 10, 2025
1401ab9
Merge branch 'main' into fix/tests
moreorover Nov 10, 2025
5133348
fix: fix tests
moreorover Nov 11, 2025
9b21cf7
fix: fix tests
moreorover Nov 11, 2025
8b9a882
Revert "fix: fix tests"
moreorover Nov 11, 2025
659d2c9
fix: fix tests
moreorover Nov 11, 2025
829117e
Revert "fix: fix tests"
moreorover Nov 11, 2025
4964ecb
fix: fix tests
moreorover Nov 11, 2025
3eb883d
Merge branch 'main' into fix/tests
moreorover Nov 12, 2025
5e20990
Merge branch 'main' into fix/tests
moreorover Nov 26, 2025
61ff06e
fix: fix tests
moreorover Nov 26, 2025
a5ef83f
fix: fix tests
moreorover Nov 26, 2025
954c18d
fix: fix tests
moreorover Nov 26, 2025
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
34 changes: 34 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install Dependencies
run: bun install --frozen-lockfile
env:
BTS_TELEMETRY: 1
POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }}
POSTHOG_HOST: ${{ secrets.POSTHOG_HOST }}

- name: Run Tests
run: bun test
working-directory: apps/cli
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/biome.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/create-better-t-stack.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/git_toolbox_prj.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading