From 53422afb61c0e3a0e242d5a4073abf61380ab8aa Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Thu, 18 Nov 2021 11:50:31 +0100 Subject: [PATCH] ci(release): workflow uses 'npm' cache (#1933) [skip ci] --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 172d4276..d2827c5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,8 +16,9 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: + cache: npm node-version: 14 - name: Install dependencies run: npm ci