chore(deps): update dependency @biomejs/biome to v2.4.13 #326
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: | |
| jobs: | |
| ci: | |
| name: CI (Node ${{ matrix.node-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "pnpm" | |
| - run: pnpm install --frozen-lockfile | |
| - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 | |
| with: | |
| path: .turbo | |
| key: turbo-${{ runner.os }}-node${{ matrix.node-version }}-${{ github.sha }} | |
| restore-keys: | | |
| turbo-${{ runner.os }}-node${{ matrix.node-version }}- | |
| - name: Build | |
| run: pnpm turbo build | |
| - name: Lint | |
| run: pnpm turbo lint | |
| - name: Typecheck | |
| run: pnpm turbo typecheck | |
| - name: Test | |
| run: pnpm turbo test | |
| - name: Validate exports | |
| run: pnpm turbo check:exports | |
| - name: Check package sizes | |
| run: pnpm run check:size | |
| python-tests: | |
| name: Python Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.12"] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4 | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm turbo build | |
| - name: Test langchain-boltzpay | |
| working-directory: integrations/langchain | |
| run: | | |
| pip install -e ".[dev]" | |
| pytest tests/ -v | |
| - name: Test boltzpay-crewai | |
| working-directory: integrations/crewai | |
| run: | | |
| pip install -e ".[dev]" | |
| pytest tests/ -v |