Skip to content

Commit 78bcb62

Browse files
authored
Merge pull request #58 from nickgros/docusaurus
2 parents a630be3 + 28b5b92 commit 78bcb62

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: ${{ matrix.node-version }}
22+
cache: 'npm'
23+
cache-dependency-path: 'packages/**/package-lock.json'
2224
- run: npm ci
2325
- run: npm run lint
2426
- run: npm run cs-check
@@ -69,7 +71,7 @@ jobs:
6971
- name: Download built playground
7072
uses: actions/download-artifact@v3
7173
with:
72-
name: dist
74+
name: playground
7375
path: dist
7476
- name: Download built docs
7577
uses: actions/download-artifact@v3

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
uses: actions/setup-node@v3
1414
with:
1515
node-version: 18.x
16+
cache: 'npm'
17+
cache-dependency-path: 'packages/**/package-lock.json'
1618
- run: npm ci
1719
- run: npm run build
1820
env:

0 commit comments

Comments
 (0)