Skip to content

Commit

Permalink
fix: 🐛 fixes the deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
prc5 committed Dec 8, 2024
1 parent 7d37fe5 commit e228dc4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "20"
cache: "yarn"
cache-dependency-path: yarn.lock
env:
Expand All @@ -39,19 +39,14 @@ jobs:
strategy:
fail-fast: false
matrix:
test-group:
[
"core",
"docusaurus",
"playground"
]
test-group: ["core", "docusaurus", "playground"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "20"
cache: "yarn"
cache-dependency-path: yarn.lock
- name: Restore node_modules
Expand Down Expand Up @@ -88,7 +83,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "20"
cache: "yarn"
cache-dependency-path: yarn.lock
- name: Restore node_modules
Expand Down
1 change: 0 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"prepublishOnly": "yarn build",
"clean": "npx rimraf dist",
"test": "jest --watchAll --maxWorkers=3",
"test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",
Expand Down
1 change: 0 additions & 1 deletion packages/docusaurus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"prepublishOnly": "yarn build",
"clean": "npx rimraf dist",
"test": "jest --watchAll --maxWorkers=3",
"test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",
Expand Down
1 change: 0 additions & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"prepublishOnly": "yarn build",
"clean": "npx rimraf dist",
"test": "jest --watchAll --maxWorkers=3",
"test:pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache --detectOpenHandles --forceExit",
Expand Down

0 comments on commit e228dc4

Please sign in to comment.