Skip to content

feat: init project

feat: init project #5

Workflow file for this run

name: Code Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
code-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run package install
run: npm i
- name: Run code format
run: npm run format
- name: Run code lint
run: npm run lint