Skip to content

Add ansi colors and cursor control functions #7

Add ansi colors and cursor control functions

Add ansi colors and cursor control functions #7

Workflow file for this run

name: Deno CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:

Check failure on line 10 in .github/workflows/deno.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deno.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Check types
run: deno check mod.ts
- name: Run tests
run: deno test