Skip to content

Wait for NPM to update before checking + Ignore tag errors (#29) #108

Wait for NPM to update before checking + Ignore tag errors (#29)

Wait for NPM to update before checking + Ignore tag errors (#29) #108

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