From f5a7417d4ec05f3d2c007025ce6730e5cf3e398e Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Wed, 13 Dec 2023 00:10:15 +0900 Subject: [PATCH] =?UTF-8?q?Pull=20Request=E3=81=AE=E7=A2=BA=E8=AA=8D?= =?UTF-8?q?=E3=82=92=E3=81=99=E3=82=8BWorkflow=E3=81=AB=E5=9E=8B=E3=83=81?= =?UTF-8?q?=E3=82=A7=E3=83=83=E3=82=AF=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/check-pull-request.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/check-pull-request.yml b/.github/workflows/check-pull-request.yml index e6e9915..8e8972d 100644 --- a/.github/workflows/check-pull-request.yml +++ b/.github/workflows/check-pull-request.yml @@ -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