Skip to content

Commit

Permalink
ci: remove cache test
Browse files Browse the repository at this point in the history
  • Loading branch information
thisyahlen-deriv committed Mar 26, 2024
1 parent 0e9b45a commit 46ad247
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/actions/npm_install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ description: Install npm packages
runs:
using: composite
steps:
- name: restore_cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
key: node-{{ checksum "package-lock.json" }}
path: UPDATE_ME
restore-keys: |-
node-{{ checksum "package-lock.json" }}
node-
# - name: restore_cache
# uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
# with:
# key: node-{{ checksum "package-lock.json" }}
# path: UPDATE_ME
# restore-keys: |-
# node-{{ checksum "package-lock.json" }}
# node-
- name: Install npm packages
run: npm ci
shell: bash
- name: save_cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
with:
path: node_modules
key: node-{{ checksum "package-lock.json" }}
# - name: save_cache
# uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
# with:
# path: node_modules
# key: node-{{ checksum "package-lock.json" }}

0 comments on commit 46ad247

Please sign in to comment.