Skip to content

Update sample app configurations (#51) #117

Update sample app configurations (#51)

Update sample app configurations (#51) #117

Workflow file for this run

name: Deno app build and testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deno:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup repo
uses: actions/checkout@v5
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Run tests
run: deno task test
- name: Run type check
run: deno check *.ts && deno check **/**/*.ts