Skip to content

Commit 6a7a872

Browse files
committed
Fixed CI workflow
1 parent 9267568 commit 6a7a872

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
# For some reason, antlr4ng writes to a different location on the VM
3131
# than it does locally, preventing compile. Command added to move the generated files.
3232
- name: npm run antlr4ng
33-
run: npm run antlr4ng && mv ./server/src/antlr/out/server/src/antlr/* ./server/src/antlr/out
33+
run: npm run antlr4ng && npm run antlr4ngPre && mv ./server/src/antlr/out/server/src/antlr/* ./server/src/antlr/out
3434
- run: npm run compile
3535
- run: npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
]
119119
},
120120
"scripts": {
121-
"vscode:prepublish": "npm run antlr4ng && npm run compile",
121+
"vscode:prepublish": "npm run antlr4ngPre && npm run antlr4ng && npm run compile",
122122
"compile": "tsc -b",
123123
"watch": "tsc -b -w",
124124
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",

0 commit comments

Comments
 (0)