Skip to content

Update link.ts to address typo #400

Update link.ts to address typo

Update link.ts to address typo #400

Workflow file for this run

name: Aleph.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup deno
uses: denoland/setup-deno@main
with:
deno-version: v1.x
- name: Deno fmt check
run: deno fmt --check
- name: Deno lint
run: deno lint
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup deno
uses: denoland/setup-deno@main
with:
deno-version: v1.x
- name: Deno test
run: deno test -A