Skip to content

Rewrite with @hono/hono #53

Rewrite with @hono/hono

Rewrite with @hono/hono #53

Workflow file for this run

name: πŸ§ͺ Test
on:
push:
branches:
- main
- dev
paths:
- "**.ts"
- deno.lock
- .github/workflows/test.yml
pull_request:
paths:
- "**.ts"
- deno.lock
- .github/workflows/test.yml
jobs:
Test:
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: πŸ¦• Setup Deno
uses: denoland/setup-deno@916edb9a40fd86d1ff57b758807ebe57242f7407 # v1.4.0
with:
deno-version: v1.x
- name: πŸ§ͺ Run Tests
run: deno task cov
- name: 🧹 Lint Check
run: deno lint
- name: πŸ“ Format Check
run: deno fmt --check
- name: πŸ” Type Check
run: deno check ./**/*.ts
- name: β˜‚οΈ Upload Coverage
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}