aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/bundlewatch.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/bundlewatch.yml')
-rw-r--r--.github/workflows/bundlewatch.yml11
1 files changed, 1 insertions, 10 deletions
diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml
index bebf01351..c212290df 100644
--- a/.github/workflows/bundlewatch.yml
+++ b/.github/workflows/bundlewatch.yml
@@ -2,8 +2,6 @@ name: Bundlewatch
on:
push:
- branches-ignore:
- - "dependabot/**"
pull_request:
env:
@@ -22,14 +20,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: "${{ env.NODE }}"
-
- - name: Set up npm cache
- uses: actions/cache@v2
- with:
- path: ~/.npm
- key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
- restore-keys: |
- ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
+ cache: npm
- name: Install npm dependencies
run: npm ci