Skip to content

feat: scroll source #39

feat: scroll source

feat: scroll source #39

Workflow file for this run

name: Check
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Git Checkout Deno Module
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x # latest
- name: Check Format
run: deno fmt --check
- name: Lint
run: deno lint
- name: Check
run: deno check app/index.ts
- name: Run Test
run: deno task t