Skip to content

Actually update schema #10

Actually update schema

Actually update schema #10

Workflow file for this run

name: CI
run-name: ${{ inputs.reason }}
on:
push:
branches:
- main
paths:
- .github/workflows/ci.yaml
- scripts/**
- src/**
- deno.{json,lock}
- denoh.ts
pull_request:
branches:
- main
paths:
- .github/workflows/ci.yaml
- scripts/**
- src/**
- deno.{json,lock}
- denoh.ts
workflow_dispatch:
inputs:
reason:
description: Dispatch reason
type: string
required: true
jobs:
ci:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set-up Deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.x
- name: Check format
run: deno task lint:fmt
- name: Check lint
run: deno task lint
- name: Run tests
run: deno task test