From 65c6d8c62ae40d094762b475e5dd990fc66599bd Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Fri, 9 Jul 2021 15:53:15 +0100 Subject: [PATCH] Use manual Node caching --- .github/workflows/wasm.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index c01481706..f461494c6 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -29,7 +29,13 @@ jobs: uses: actions/setup-node@v2 with: node-version: 14 - cache: npm + + - uses: actions/cache@v2 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node- - name: Install test dependencies working-directory: ./test/wasm