Skip to content

Commit

Permalink
Replace to frozen usages
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Oct 15, 2024
1 parent ba1f544 commit 4987f4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
with:
deno-version: v2.x
- name: Build Deno Module
run: deno run -A --lock=deno.lock --lock-write --reload mod.ts
run: deno run -A --lock=deno.lock --frozen=false --reload mod.ts
- name: fetch any uncached dependencies
run: |
deno cache --lock=deno.lock --lock-write --reload=file: ./mod.ts
deno cache --lock=deno.lock --frozen=false --reload=file: ./mod.ts
- run: |
deno test --lock=deno.lock --lock-write -A .
deno test --lock=deno.lock --frozen=false -A .
- run: |
deno bench --lock=deno.lock --lock-write -A .
deno bench --lock=deno.lock --frozen=false -A .
- name: check lint
continue-on-error: true
run: |
Expand Down

0 comments on commit 4987f4a

Please sign in to comment.