security: patch cve-2025-66478 #8
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"] # Or your default branch | |
| pull_request: | |
| branches: ["main"] # Or your default branch | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| # with: | |
| # bun-version: latest # Optional: specify a Bun version | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile # Use --frozen-lockfile for consistency | |
| - name: Run Vitest tests | |
| run: bun vitest run |