From ad3852b892360c06f3ddb880c5b89054ce155943 Mon Sep 17 00:00:00 2001 From: Ed Sungik Choi Date: Sat, 9 Dec 2023 20:40:57 +0900 Subject: [PATCH] ci: move install step before build step --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c9f3c2..8963d45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,12 @@ jobs: with: node-version-file: .nvmrc - - name: Build - run: yarn build - - name: Install Dependencies run: yarn install --frozen-lockfile + - name: Build + run: yarn build + - name: Lint run: yarn lint