Skip to content

Merge pull request #30 from mimiMonads/0.1.40 #43

Merge pull request #30 from mimiMonads/0.1.40

Merge pull request #30 from mimiMonads/0.1.40 #43

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run `deno lint` and `deno test`.
# For more information see: https://github.com/denoland/setup-deno
name: Deno
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x # Uses latest deno version 1
- run: deno add @cross/test @std/assert # Installs dependencies from jsr.io
- run: deno test -A
- name: Verify formatting
run: deno fmt --check
- name: Verify JSR
run: deno publish --dry-run