From eef35ae35906aad5122b9bfff58caff299febcf0 Mon Sep 17 00:00:00 2001 From: Anthony Ronda Date: Thu, 29 Sep 2022 12:08:41 -0400 Subject: [PATCH] build: remove cache --- .github/workflows/release.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75dc2907..b56cd619 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,24 +12,24 @@ jobs: - name: Checkout repository to add to workspace uses: actions/checkout@v2 - - name: Setup Node.js version 14 + - name: Setup Node.js version 16 uses: actions/setup-node@v2 with: node-version: "16" - # Caching to improve build speed - - name: Enable caching for Node.js modules - uses: actions/cache@v2 - with: - path: .npm - key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.OS }}-node- - ${{ runner.OS }}- + # # Caching to improve build speed + # - name: Enable caching for Node.js modules + # uses: actions/cache@v2 + # with: + # path: .npm + # key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} + # restore-keys: | + # ${{ runner.OS }}-node- + # ${{ runner.OS }}- # Get dev dependencies for the package, including Gulp and Rollup - name: Install dev dependencies - run: npm ci --cache .npm --prefer-offline + run: npm ci #--cache .npm --prefer-offline # Create a build using Gulp build script - name: Run Gulp build script