Skip to content

Merge pull request #28 from taga3s/fix/md-styling #127

Merge pull request #28 from taga3s/fix/md-styling

Merge pull request #28 from taga3s/fix/md-styling #127

name: check-codebase
on:
push:
permissions:
contents: read
jobs:
check-codebase:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.6.0
run_install: false
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Run lint
run: pnpm lint
- name: Run format
run: pnpm format