Update Deno versions in CI #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: {} | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
name: Check w/ ${{ matrix.deno-version }} | |
strategy: | |
matrix: | |
deno-version: | |
- v1.25 | |
- v1.30 | |
- v1.35 | |
- canary | |
fail-fast: false # run each branch to completion | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Use Deno ${{ matrix.deno-version }} | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.deno-version }} | |
- name: Check mod.ts | |
run: time deno check --reload mod.ts | |
- name: Check example.ts | |
run: time deno check example.ts | |
- name: Check examples/emit-metrics.ts | |
run: time deno check --unstable examples/emit-metrics.ts |