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 e2563f9 commit 0b5ba36
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: '**/node_modules'
path: |
'**/node_modules'
key: ci-${{ hashFiles('**/package-lock.json') }}

- name: Install Dependencies
Expand Down Expand Up @@ -87,9 +88,11 @@ jobs:
- name: Restore Dependencies
uses: actions/cache@v2
with:
path: '**/node_modules'
path: |
'**/node_modules'
key: ci-${{ hashFiles('**/package-lock.json') }}
restore-keys: ci-
restore-keys: |
ci-
- name: Code Building
run: |
Expand Down

0 comments on commit 0b5ba36

Please sign in to comment.