Release 2026.03.15 (#83) #329
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: Run Tests | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| THUMBNAIL_URL: ${{ vars.THUMBNAIL_URL }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| # Pin to 1.3.5: Bun 1.3.10 has a regression (descriptor.value undefined with NestJS/Swagger). | |
| # Fix merged in PR #27527 (Feb 28) but not yet in a release. Revert when 1.3.11+ is latest. | |
| bun-version: '1.3.5' | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run tests | |
| run: bun test |