Skip to content

Version user agent #226

Version user agent

Version user agent #226

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: 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