Skip to content

minor fix

minor fix #3

Workflow file for this run

name: Lint, TypeScript Check, and Format
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout commit
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Formatting Check
run: npm run format-check
- name: Type check
run: npm run type-check