From ddff38bfe6c9ed490f20ab4a6e5ab47ceec2031b Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Tue, 24 Oct 2023 18:46:08 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a4a8b2..82b521f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,19 +17,17 @@ jobs: uses: actions/checkout@v2 - name: Setup Node.js 🏗 - uses: actions/setup-node@v2 + uses: actions/setup-node@v2.5.3 with: - node-version: 14 + node-version: 16 - name: Get yarn cache directory path 🛠 - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "YARN_CACHE_DIR=$(yarn cache dir)" >> $GITHUB_ENV - name: Cache node_modules 📦 uses: actions/cache@v2 - id: yarn-cache with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + path: ${{ env.YARN_CACHE_DIR }} key: ubuntu-latest-yarn-${{ hashFiles('new-web/yarn.lock') }} - name: Install dependencies 👨🏻‍💻