Skip to content

Commit 6668b23

Browse files
committed
fix: fix ts install
1 parent 52e90a6 commit 6668b23

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/regression.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Install dependencies for old
7070
run: |
7171
# HACK: auto installation uses the published version, not our local version
72-
(cd ./main_repo/ts-parser && npm install && npm install -g .)
72+
(cd ./main_repo/ts-parser && npm install && npm run build && npm install -g .)
7373
OUTDIR=out_old ABCEXE=./abcoder_old ./main_repo/script/run_testdata.sh first
7474
# avoid wasting time install a new jdtls
7575
echo "JDTLS_ROOT_PATH=$(realpath ./main_repo/lang/java/lsp/jdtls/jdt-language-server-*)" >> $GITHUB_ENV
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: Install dependencies for new
8686
run: |
87-
(cd ./pr_repo/ts-parser && npm install && npm install -g .)
87+
(cd ./pr_repo/ts-parser && npm install && npm run build && npm install -g .)
8888
OUTDIR=out_new ABCEXE=./abcoder_new ./pr_repo/script/run_testdata.sh first
8989
9090
- name: Run NEW abcoder

0 commit comments

Comments
 (0)