adding more caching
Some checks failed
Test (production install and build) / production (22.x) (push) Has been cancelled

This commit is contained in:
Luna 2025-01-19 18:29:32 +00:00
parent 970e17b184
commit c7f3ae06a7

View file

@ -24,7 +24,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cache repository
id: cache-node
uses: actions/cache@v4
with:
path: ./
@ -54,6 +53,11 @@ jobs:
- sw
- misskey-js
steps:
- name: Restore cached repository
uses: actions/cache/restore@v4
with:
path: ./
key: repo-cache
- uses: actions/checkout@v4
with:
fetch-depth: 0
@ -78,6 +82,11 @@ jobs:
- backend
- misskey-js
steps:
- name: Restore cached repository
uses: actions/cache/restore@v4
with:
path: ./
key: repo-cache
- uses: actions/checkout@v4
with:
fetch-depth: 0