diff --git a/.github/actions/npm_install/action.yml b/.github/actions/npm_install/action.yml index bce743f..4899b7b 100644 --- a/.github/actions/npm_install/action.yml +++ b/.github/actions/npm_install/action.yml @@ -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" }}