Skip to content

Commit f70ce3c

Browse files
committed
ci: fix dev env chaching
1 parent 07e62d7 commit f70ce3c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
path: ./tools/docs-check/.venv_vizzu
1818
key: venv-${{ github.run_id }}
1919

20+
- uses: actions/cache@v3
21+
with:
22+
path: ./tools/docs-check/node_modules
23+
key: nodemodules-${{ github.run_id }}
24+
2025
- name: Touch dev environment
2126
run: make touch-dev
2227
working-directory: ./tools/docs-check

.github/workflows/init.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
path: ./tools/docs-check/.venv_vizzu
1818
key: venv-${{ github.run_id }}
1919

20+
- uses: actions/cache@v3
21+
with:
22+
path: ./tools/docs-check/node_modules
23+
key: nodemodules-${{ github.run_id }}
24+
2025
- name: Init dev environment
2126
run: make dev
2227
working-directory: ./tools/docs-check

0 commit comments

Comments
 (0)