From 56a5ba6a4ee80ef7dfa819c0619e86af4453f3a9 Mon Sep 17 00:00:00 2001 From: what1s1ove Date: Thu, 30 Nov 2023 17:13:00 +0200 Subject: [PATCH] ci: edit ci steps wd-144 --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f4b0ab9..c332fd49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,11 +57,12 @@ jobs: - name: Cache Dependencies id: cache - uses: actions/cache@v3 + uses: actions/cache@v2 with: path: ./node_modules key: ci-${{ hashFiles('**/package-lock.json') }} - restore-keys: ci- + restore-keys: | + ci- - name: Install Dependencies if: steps.cache.outputs.cache-hit != 'true' @@ -90,7 +91,7 @@ jobs: - name: Restore Dependencies uses: actions/cache@v2 with: - path: './node_modules' + path: ./node_modules key: ci-${{ hashFiles('**/package-lock.json') }} - name: Code Building