Skip to content

Update to latest official deno_cache rather than a patched version #16

Update to latest official deno_cache rather than a patched version

Update to latest official deno_cache rather than a patched version #16

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
deno:
name: deno_import_content-${{ matrix.os }}
if: |
github.event_name == 'push' ||
!startsWith(github.event.pull_request.head.label, 'denoland:')
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-2019]
env:
GH_ACTIONS: 1
steps:
- name: ☑️ clone repository
uses: actions/checkout@v2
- name: ➡️ install Deno
uses: denoland/[email protected]
with:
deno-version: 1.x
- name: 💄 format
if: contains(matrix.os, 'ubuntu')
run: |
deno fmt --check
- name: 💄 lint
if: contains(matrix.os, 'ubuntu')
run: |
deno lint
- name: 🧪 test
run: |
deno task test