Skip to content

Commit

Permalink
Update Deno versions in CI (#7)
Browse files Browse the repository at this point in the history
* Update Deno versions in CI

* Deno v1.20 lacks check command
  • Loading branch information
danopia authored Dec 23, 2023
1 parent 657811e commit 4226f73
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/deno-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ jobs:
strategy:
matrix:
deno-version:
- v1.4
- v1.9
- v1.12
- v1.13
- v1.25
- v1.30
- v1.35
- canary
fail-fast: false # run each branch to completion

Expand All @@ -30,8 +29,8 @@ jobs:
deno-version: ${{ matrix.deno-version }}

- name: Check mod.ts
run: time deno cache --reload mod.ts
run: time deno check --reload mod.ts
- name: Check example.ts
run: time deno cache example.ts
run: time deno check example.ts
- name: Check examples/emit-metrics.ts
run: time deno cache --unstable examples/emit-metrics.ts
run: time deno check --unstable examples/emit-metrics.ts

0 comments on commit 4226f73

Please sign in to comment.