From 7e5e6c79e2fc901fa10f84efcc660a5e1b6a5355 Mon Sep 17 00:00:00 2001 From: HoJeong Go Date: Fri, 19 Jul 2024 20:53:59 +0900 Subject: [PATCH] Apply corepack later --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 94ac5a4e40..dd2296b219 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,16 +15,17 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Enable Corepack - run: corepack enable - name: Use node ${{ matrix.node }} uses: actions/setup-node@v4 with: - cache: npm + cache: yarn node-version: ${{ matrix.node }} registry-url: https://registry.npmjs.org + - name: Enable Corepack + run: corepack enable + - run: tree . -L 2 -a - name: Install dependencies