From 82388ea9d464d589e264232ca3aa93827b4adf3c Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Mon, 20 Dec 2021 17:24:01 +0100 Subject: [PATCH] ci(workflow): add 'npm' cache for actions/setup-node in .github/workflows --- .github/workflows/workflow.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 1126e0c1f..b77cd17da 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -20,9 +20,10 @@ jobs: uses: actions/checkout@v2 - name: Setup node 12 - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: 12 + cache: npm - name: npm install run: npm install