chore: remove changeset ci

This commit is contained in:
Bereket Engida
2025-08-04 10:51:59 -07:00
parent ca3a13407e
commit ee63084a2e
3 changed files with 5 additions and 18 deletions

View File

@@ -1,5 +0,0 @@
---
"better-auth": patch
---
fix: await `ctx` in middleware

View File

@@ -11,10 +11,6 @@ on:
- 'v**' - 'v**'
merge_group: {} merge_group: {}
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM || github.repository_owner }}
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -48,24 +44,20 @@ jobs:
TURBO_TEAM: ${{ vars.TURBO_TEAM || github.repository_owner }} TURBO_TEAM: ${{ vars.TURBO_TEAM || github.repository_owner }}
TURBO_REMOTE_ONLY: true TURBO_REMOTE_ONLY: true
run: pnpm build run: pnpm build
- name: Start Docker Containers - name: Start Docker Containers
run: | run: |
docker compose up -d docker compose up -d
# Wait for services to be ready (optional) # Wait for services to be ready (optional)
sleep 10 sleep 10
- name: Lint - name: Lint
env: env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM || github.repository_owner }} TURBO_TEAM: ${{ vars.TURBO_TEAM || github.repository_owner }}
TURBO_REMOTE_ONLY: true TURBO_REMOTE_ONLY: true
run: pnpm lint run: pnpm lint
- name: Check for Changesets
if: ${{ !startsWith(github.head_ref, 'changeset-release/') && !startsWith(github.ref_name, 'changeset-release/') }}
run: pnpm changeset status --since origin/main
- name: Test - name: Test
env: env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
@@ -81,3 +73,4 @@ jobs:
- name: Stop Docker Containers - name: Stop Docker Containers
run: docker compose down run: docker compose down

View File

@@ -17,8 +17,7 @@
"release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks", "release:canary": "turbo --filter \"./packages/*\" build && bumpp && pnpm -r publish --access public --tag canary --no-git-checks",
"bump": "bumpp", "bump": "bumpp",
"test": "turbo --filter \"./packages/*\" test", "test": "turbo --filter \"./packages/*\" test",
"typecheck": "turbo --filter \"./packages/*\" typecheck", "typecheck": "turbo --filter \"./packages/*\" typecheck"
"changelog:check": "changeset status"
}, },
"dependencies": { "dependencies": {
"@biomejs/biome": "1.7.3", "@biomejs/biome": "1.7.3",