Bump @types/bun from 1.3.11 to 1.3.13 #44
Workflow file for this run
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 PR | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Cache Bun Installation | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.bun | |
| key: ${{ runner.os }}-bun | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Cache Dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: ${{ runner.os }}-bun-deps-${{ hashFiles('bun.lockb') }} | |
| restore-keys: | | |
| ${{ runner.os }}-bun-deps- | |
| - name: Install All Dependencies | |
| run: bun install | |
| - name: Run Tests | |
| run: bun run test |