Skip to content

Commit

Permalink
ci: edit ci steps wd-144
Browse files Browse the repository at this point in the history
  • Loading branch information
what1s1ove committed Nov 30, 2023
1 parent b0cd9fb commit 56a5ba6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 56a5ba6

Please sign in to comment.