Skip to content

Commit

Permalink
ci: タイプチェックの追加
Browse files Browse the repository at this point in the history
  • Loading branch information
shun-shobon committed Oct 29, 2024
1 parent be71aaf commit b4c25e1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,30 @@ jobs:
- name: Run | Lint
run: pnpm run lint

typecheck:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/checkout@v4

- name: Setup | Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Setup | Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm

- name: Setup | Install Dependencies
run: pnpm install --frozen-lockfile

- name: Run | Type Check
run: pnpm run typecheck

check-schema:
runs-on: ubuntu-latest
timeout-minutes: 5
Expand Down

0 comments on commit b4c25e1

Please sign in to comment.