Skip to content

test: attempt to fix bizarre CI failure #204

test: attempt to fix bizarre CI failure

test: attempt to fix bizarre CI failure #204

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
name: tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: true
steps:
- uses: actions/checkout@v2
- name: download deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.32.1
- name: check format
if: matrix.os == 'ubuntu-latest'
run: deno fmt --check
- name: check lint
if: matrix.os == 'ubuntu-latest'
run: deno lint --unstable
- name: run tests
run: deno test --allow-read=. --allow-write=. --allow-run=touch --allow-env