Update the deno readme since we have documentation now. (#16) #79
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: sudo snap install deno | |
- name: Run tests | |
run: deno fmt --check && deno lint && deno test --allow-net --parallel tests/ | |
- name: Check coverage | |
run: deno run -A scripts/coverage.ts |