Skip to content

Commit

Permalink
chore: add canary to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Oct 7, 2024
1 parent d1fd693 commit 7debfc0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
version: [1.x, canary]
steps:
- name: clone repository
uses: actions/checkout@v4

- name: install deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.X
deno-version: ${{ matrix.version }}

- name: check format
run: deno fmt --check
Expand Down

0 comments on commit 7debfc0

Please sign in to comment.