Skip to content

Bump @cloudflare/vitest-pool-workers from 0.4.29 to 0.6.14 in /test/runtimes/cloudflare #429

Bump @cloudflare/vitest-pool-workers from 0.4.29 to 0.6.14 in /test/runtimes/cloudflare

Bump @cloudflare/vitest-pool-workers from 0.4.29 to 0.6.14 in /test/runtimes/cloudflare #429

Workflow file for this run

name: Deno CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.x, 2.x]
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: Remove lock file
if: matrix.deno-version == '1.x'
run: rm deno.lock
- name: Run deno test
run: |
deno fmt --check
deno task test
deno task cov > coverage.lcov
- uses: codecov/codecov-action@v2
if: matrix.deno-version == '2.x'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.lcov
flags: unittests
- name: Run deno publish (dry)
run: npx jsr publish --dry-run --allow-dirty