Skip to content

Commit

Permalink
ci(codesandbox): fix CodeSandbox CI setting (#638)
Browse files Browse the repository at this point in the history
* ci(codesandbox): upgrade node version

* ci(codesandbox): upgrade node version

* build: fix build script

* Revert "build: fix build script"

This reverts commit 415af59.

* build: add sequential build script for codesandbox ci

* ci(codesandbox): fix commands

* Revert "ci(codesandbox): fix commands"

This reverts commit 6e23d77.

* ci(codesandbox): fix commands

* ci(codesandbox): fix install command

* ci(codesandbox): fix install command

* ci(codesandbox): fix install command

* ci(codesandbox): fix install command

* ci(codesandbox): fix install command

* ci(codesandbox): fix install command
  • Loading branch information
kotarella1110 committed Oct 18, 2023
1 parent efab5bd commit 3805d3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"node": "14",
"installCommand": "csb:install",
"buildCommand": "csb:build",
"node": "18",
"silent": true
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@
"lint:types": "tsc",
"test": "vitest run",
"test:watch": "vitest watch",
"check:all": "npm-run-all --parallel lint:* test"
"check:all": "npm-run-all --parallel lint:* test",
"csb:install": "pnpx replace-json-property@1.9.0 package.json prepare \"node -e 'process.exit(0)'\" && pnpm i --no-frozen-lockfile",
"csb:build": "cross-env npm-run-all --sequential 'build:*'"
},
"keywords": [
"scheme",
Expand Down

0 comments on commit 3805d3e

Please sign in to comment.