Skip to content

Bump wrangler from 3.101.0 to 3.102.0 in /test/runtimes/cloudflare #398

Bump wrangler from 3.101.0 to 3.102.0 in /test/runtimes/cloudflare

Bump wrangler from 3.101.0 to 3.102.0 in /test/runtimes/cloudflare #398

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