Skip to content

Commit d213890

Browse files
committed
Fix test section of workflow file
1 parent bce3413 commit d213890

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,15 @@ jobs:
6161

6262
# We have to build the dependencies in `lib` before running any tests.
6363
- name: Install dependencies
64-
run: node common/scripts/install-run-rush.js install
64+
run: |
65+
cd extensions/ql-vscode
66+
npm install
6567
shell: bash
6668

6769
- name: Build
68-
run: node common/scripts/install-run-rush.js build
70+
run: |
71+
cd extensions/ql-vscode
72+
gulp
6973
shell: bash
7074

7175
- name: Lint

0 commit comments

Comments
 (0)