From 5c46e26ce37032ba679198706cd32b540b135b53 Mon Sep 17 00:00:00 2001 From: Jaewook Ahn Date: Sun, 23 Jun 2024 22:49:11 +0900 Subject: [PATCH] fix(ci): add deps installation command --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f080c11..8c7e2f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: with: node-version-file: .tool-versions cache: 'yarn' + - run: yarn install --frozen-lockfile - run: yarn build lint: runs-on: ubuntu-latest @@ -22,4 +23,5 @@ jobs: with: node-version-file: .tool-versions cache: 'yarn' + - run: yarn install --frozen-lockfile - run: yarn lint