Skip to content

Merge branch 'main' of https://github.com/denoland/docland into sync-… #74

Merge branch 'main' of https://github.com/denoland/docland into sync-…

Merge branch 'main' of https://github.com/denoland/docland into sync-… #74

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
deno:
name: docland-${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest]
env:
GH_ACTIONS: 1
steps:
- name: ☑️ clone repository
uses: actions/checkout@v3
- name: ➡️ install Deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.x
- name: 💄 format
run: deno fmt --check
- name: 💄 lint
run: deno lint
- name: 🧪 test
run: deno task test