Skip to content

Commit e228dc4

Browse files
committed
fix: 🐛 fixes the deployment
1 parent 7d37fe5 commit e228dc4

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: "18"
17+
node-version: "20"
1818
cache: "yarn"
1919
cache-dependency-path: yarn.lock
2020
env:
@@ -39,19 +39,14 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
test-group:
43-
[
44-
"core",
45-
"docusaurus",
46-
"playground"
47-
]
42+
test-group: ["core", "docusaurus", "playground"]
4843
steps:
4944
- name: Checkout
5045
uses: actions/checkout@v3
5146
- name: Set up Node.js
5247
uses: actions/setup-node@v3
5348
with:
54-
node-version: "18"
49+
node-version: "20"
5550
cache: "yarn"
5651
cache-dependency-path: yarn.lock
5752
- name: Restore node_modules
@@ -88,7 +83,7 @@ jobs:
8883
- name: Set up Node.js
8984
uses: actions/setup-node@v3
9085
with:
91-
node-version: "18"
86+
node-version: "20"
9287
cache: "yarn"
9388
cache-dependency-path: yarn.lock
9489
- name: Restore node_modules

packages/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"types": "dist/index.d.ts",
1313
"source": "src/index.ts",
1414
"scripts": {
15-
"prepublishOnly": "yarn build",
1615
"clean": "npx rimraf dist",
1716
"test": "jest --watchAll --maxWorkers=3",
1817
"test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",

packages/docusaurus/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"types": "dist/index.d.ts",
1313
"source": "src/index.ts",
1414
"scripts": {
15-
"prepublishOnly": "yarn build",
1615
"clean": "npx rimraf dist",
1716
"test": "jest --watchAll --maxWorkers=3",
1817
"test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",

packages/playground/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"types": "dist/index.d.ts",
1212
"source": "src/index.ts",
1313
"scripts": {
14-
"prepublishOnly": "yarn build",
1514
"clean": "npx rimraf dist",
1615
"test": "jest --watchAll --maxWorkers=3",
1716
"test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",

0 commit comments

Comments
 (0)