Bump actions/cache from 3 to 4 (#1) #14
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.20 | |
- v1.25 | |
- canary | |
fail-fast: false # run each branch to completion | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Use Deno ${{ matrix.deno-version }} | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.deno-version }} | |
# "https" cache: code from the Internet | |
# External sources won't change much so we use less precise keys | |
- name: Cache https:// | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/deno/deps/https | |
key: deno-https/v1-${{ github.sha }} | |
restore-keys: deno-https/v1- | |
- name: Check src/mod.ts | |
run: time deno cache src/mod.ts | |
- name: Check src/example.ts | |
run: time deno cache src/example.ts | |
- name: Run test suite | |
run: time deno test tests/**/*.ts |