Skip to content

Setup workflows

Setup workflows #2

Workflow file for this run

name: Deno CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: 'latest'
- name: Check formatting
run: deno task fmt:check
- name: Typescript check
run: deno task check
- name: Run unit tests
run: deno task test