From f226e31acc4f63905e2f91d726fee44e36588cf3 Mon Sep 17 00:00:00 2001 From: loevray Date: Mon, 1 Apr 2024 01:05:12 +0900 Subject: [PATCH] =?UTF-8?q?git=20actions=20CI=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 86733fdd..d1639c95 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -12,18 +12,23 @@ jobs: steps: - name: Checkout - - uses: actions/checkout@v4 + uses: actions/checkout@v4 - - name: Set up Node + - name: Set up Node with Corepack uses: actions/setup-node@v4 with: node-version: 20 - cache: yarn + + - name: Enable Corepack + run: corepack enable - name: Set Yarn Version run: | yarn set version 4.1.0 + - name: Install dependencies + run: yarn install + - name: Build with yarn run: yarn run build env: