Skip to content

chore: fix lint

chore: fix lint #24

Workflow file for this run

name: ci
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- run: deno fmt --check
- run: deno lint
- run: deno task cov
- run: deno task lcov
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}