chore(deps): update dependency @libsql/client to v0.17.2 #787
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v5 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - run: pnpm install | |
| - run: pnpm lint | |
| - run: pnpm typecheck | |
| - run: pnpm prepack | |
| - run: pnpm dev:build | |
| env: | |
| BETTER_AUTH_SECRET: ci-test-secret-12345678901234567890 | |
| - run: pnpm build:docs | |
| - run: pnpm test |