forked from woem.men/forkey
adding more caching
Some checks failed
Test (production install and build) / production (22.x) (push) Has been cancelled
Some checks failed
Test (production install and build) / production (22.x) (push) Has been cancelled
This commit is contained in:
parent
970e17b184
commit
c7f3ae06a7
1 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue