From 8a967e94c0cb7e859a811bb4321e2f89f533d85f Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 8 Nov 2021 23:43:18 +0100 Subject: [PATCH] add node cache paths --- .github/workflows/gh-pages.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index a6521291..7fb1ae1e 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -13,7 +13,11 @@ jobs: - uses: actions/checkout@v2 - uses: actions/cache@v2 with: - path: vendor/bundle + path: | + vendor/bundle + ~/.npm + node_modules + */*/node_modules key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} restore-keys: | ${{ runner.os }}-gems-