Skip to content

refactor: decomposed src/index into service dir, added jest for testing #1

refactor: decomposed src/index into service dir, added jest for testing

refactor: decomposed src/index into service dir, added jest for testing #1

Workflow file for this run

name: hono_jest
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 18 ]
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
working-directory: hono
- name: Check Prettier
run: npm run check-prettier
working-directory: hono
- name: Check ESLint
run: npm run check-eslint
working-directory: hono