Skip to content

Commit

Permalink
Merge pull request #241 from anthonyronda/fix/gh-action-failure
Browse files Browse the repository at this point in the history
build: remove caching
  • Loading branch information
anthonyronda authored Sep 29, 2022
2 parents 390b60a + eef35ae commit b91a64e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b91a64e

Please sign in to comment.