Skip to content

Temporarily ignore failing tests. #59

Temporarily ignore failing tests.

Temporarily ignore failing tests. #59

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test with ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: "^2.1.6"
- name: Format check
run: deno fmt --check
- name: Lint
run: deno lint
- name: Type check
run: ./scripts/type-check.sh
- name: Test
run: ./scripts/test.sh