From 332de39b74e3f7be1608f853bc735b05c8f43379 Mon Sep 17 00:00:00 2001 From: SeieunYoo Date: Sun, 28 Jul 2024 22:56:01 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20ci=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51e6faa..449afb6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: CI +name: build on: push: @@ -23,8 +23,14 @@ jobs: with: node-version: 20.x + - name: Install pnpm + uses: pnpm/action-setup@v3 + with: + version: 8 + run_install: false + - name: Install dependencies run: pnpm install - name: Run build - run: npm run build + run: pnpm run build