Skip to content

fix

fix #313

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Run fmt
run: deno fmt --check
- name: Run lint
run: deno lint
- name: Run test
run: deno test