From 20b6dea23916144f8f3ea0a68a5c6e5b5e12724c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 20 Sep 2021 18:56:59 +0200 Subject: [PATCH] Enable npm caching for all GitHub Actions jobs see 1a0841ca4d71142ba6d8adfce914bbaa90c41bb4 --- .github/workflows/codestyle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index bd0d34e154..429c622ed6 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -34,6 +34,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "16" + cache: "npm" - run: npm install - name: Run prettier run: | @@ -53,6 +54,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "16" + cache: "npm" - run: npm install - name: Run prettier run: | -- 2.20.1