瀏覽代碼

Remove unnecessary CI cache

Francisco Giordano 2 年之前
父節點
當前提交
42fab12584
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      .github/actions/setup/action.yml

+ 1 - 2
.github/actions/setup/action.yml

@@ -6,14 +6,13 @@ runs:
     - uses: actions/setup-node@v3
       with:
         node-version: 14.x
-        cache: npm
     - uses: actions/cache@v3
       id: cache
       with:
         path: '**/node_modules'
         key: npm-v3-${{ hashFiles('**/package-lock.json') }}
     - name: Install dependencies
-      run: npm ci --prefer-offline
+      run: npm ci
       shell: bash
       if: steps.cache.outputs.cache-hit != 'true'
       env: