From 76de2bf24a0e706f15a468a6ee0448d3ee957055 Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Sun, 4 Jul 2021 13:40:28 +0200 Subject: [PATCH 1/2] ci(workflow): add 'npm' cache for actions/setup-node in release.yml --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6cae1bd..75d2d5e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ jobs: - uses: actions/setup-node@v2 with: node-version: 12 + cache: npm - uses: actions/cache@v1 with: path: ~/.npm From ecb5e8d3389e1ae83a43e63dc23ba6aeb25397f2 Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Sun, 4 Jul 2021 13:40:29 +0200 Subject: [PATCH 2/2] ci(workflow): add 'npm' cache for actions/setup-node in test.yml --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ff0d34a..3be25ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node_version }} + cache: npm - uses: actions/cache@v2 with: path: ~/.npm