Skip to content

remove snap

remove snap #211

Workflow file for this run

name: Deno
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deno:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
run: curl -fsSL https://deno.land/install.sh | sh
- name: Run tests
run:
/home/runner/.deno/bin/deno fmt --check && \
/home/runner/.deno/bin/deno lint && \
/home/runner/.deno/bin/deno test --allow-net --parallel --doc tests/
- name: Check coverage
run: /home/runner/.deno/bin/deno run -A scripts/coverage.ts