mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-28 17:23:09 -06:00
Use manual Node caching
This commit is contained in:
parent
50b104ca4b
commit
65c6d8c62a
8
.github/workflows/wasm.yml
vendored
8
.github/workflows/wasm.yml
vendored
|
|
@ -29,7 +29,13 @@ jobs:
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
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
|
- name: Install test dependencies
|
||||||
working-directory: ./test/wasm
|
working-directory: ./test/wasm
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue