Skip to content

Commit

Permalink
Pull Requestの確認をするWorkflowに型チェックを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
3w36zj6 committed Dec 12, 2023
1 parent a91304e commit f5a7417
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,19 @@ jobs:

- name: Check build
run: bun run build
check-type:
name: Check type
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.16

- name: Install dependencies
run: bun install

- name: Check type
run: bun run check-type

0 comments on commit f5a7417

Please sign in to comment.