remove snap #211
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |