We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2461acc commit 105336cCopy full SHA for 105336c
.github/workflows/ci.yaml
@@ -15,6 +15,11 @@ jobs:
15
with:
16
version: 9.4.0
17
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: "22.x"
22
+
23
- name: Install dependencies
24
run: pnpm i
25
core/package.json
@@ -8,7 +8,7 @@
8
"scripts": {
9
"build": "tsc",
10
"lint": "eslint . --fix",
11
- "start": "node --loader ts-node/esm src/index.ts",
+ "start": "node --loader ts-node/esm src/index.ts --characters=\"../characters/blobert.character.json\"",
12
"start:arok": "node --loader ts-node/esm src/index.ts --characters=\"characters/arok.character.json\"",
13
"start:service:ruby": "pm2 start npm --name=\"ruby\" --restart-delay=3000 --max-restarts=10 -- run start:ruby",
14
"stop:service:ruby": "pm2 stop ruby",
0 commit comments