Version user agent #226
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: Install Deno | |
run: curl -fsSL https://deno.land/install.sh | sh | |
- name: Format check | |
run: /home/runner/.deno/bin/deno fmt --check | |
- name: Lint check | |
run: /home/runner/.deno/bin/deno lint | |
- name: Run tests | |
run: /home/runner/.deno/bin/deno test --allow-net --parallel --doc | |
- name: Check coverage | |
run: /home/runner/.deno/bin/deno run -A scripts/coverage.ts |