Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

update README

update README #15

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: denoland/setup-deno@main
with:
deno-version: "1.37.1"
- name: Run lint
run: |
deno task lint
- name: Check
run: |
deno task check
- name: Run tests
run: |
deno task test