Skip to content

Commit 7debfc0

Browse files
committed
chore: add canary to ci
1 parent d1fd693 commit 7debfc0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ on: [push, pull_request]
55
jobs:
66
ci:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
version: [1.x, canary]
811
steps:
912
- name: clone repository
1013
uses: actions/checkout@v4
1114

1215
- name: install deno
1316
uses: denoland/setup-deno@v1
1417
with:
15-
deno-version: 1.X
18+
deno-version: ${{ matrix.version }}
1619

1720
- name: check format
1821
run: deno fmt --check

0 commit comments

Comments
 (0)