chore: bun lockfile #22
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: Test | |
| on: | |
| push: | |
| workflow_dispatch: | |
| inputs: | |
| deno: | |
| description: 'Test on deno' | |
| required: true | |
| default: true | |
| type: boolean | |
| bun: | |
| description: 'Test on bun' | |
| required: true | |
| default: true | |
| type: boolean | |
| jobs: | |
| testNode: | |
| name: 'Test: Node.js ${{ matrix.node-version }}' | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ['20.x', '22.x', '24.x'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Cache node modules | |
| id: cache-node-modules | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-node-modules | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ env.cache-name }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-modules-${{ env.cache-name }}--node-${{ matrix.node-version }}- | |
| ${{ runner.os }}-modules-${{ env.cache-name }} | |
| ${{ runner.os }}-modules- | |
| ${{ runner.os }}- | |
| - name: Install dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - name: Run tests | |
| run: npm run test:node | |
| testDeno: | |
| name: 'Test: Deno' | |
| if: always() && (github.event.inputs.deno == 'true' || github.event.inputs.deno == null) | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - name: Install Dependencies | |
| run: deno install --allow-scripts | |
| - name: Run tests | |
| run: npm run test:deno | |
| testBun: | |
| name: 'Test: Bun' | |
| if: always() && (github.event.inputs.bun == 'true' || github.event.inputs.bun == null) | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install Dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run tests | |
| run: npm run test:bun |