-
-
Notifications
You must be signed in to change notification settings - Fork 221
add CI workflow #683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
add CI workflow #683
Changes from 8 commits
19978a7
cd98ec0
6f20ff6
b7e6568
d48592f
d73c915
4d33b3d
a17d400
f744cfa
c486e3b
baa7340
78dc847
1e112f3
4478fa0
c2732c6
b1608a3
86c08d1
dffee34
1401ab9
5133348
9b21cf7
8b9a882
659d2c9
829117e
4964ecb
3eb883d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: Test | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Git user | ||
| shell: bash | ||
| run: | | ||
| git config --global user.name github-actions[bot] | ||
| git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
|
|
||
| - 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 | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.