From 2a868aa9663f66a9bded893f0acf36e7ca8a180f Mon Sep 17 00:00:00 2001 From: guesung Date: Tue, 13 Aug 2024 20:56:21 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=8C=A8=ED=82=A4=EC=A7=80=20=EA=B4=80?= =?UTF-8?q?=EB=A6=AC=EC=9E=90=EB=A5=BC=20yarn=EC=97=90=EC=84=9C=20npm?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60db4aa..5586f43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@main name: Checkout repository - name: Cache dependencies @@ -20,10 +20,10 @@ jobs: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- - name: Install dependencies - run: yarn install --frozen-lockfile + run: npm install --frozen-lockfile - name: Check typescript - run: yarn type:check + run: npm run type:check - name: Check eslint - run: yarn lint + run: npm run lint