Skip to content

Commit 19a76dc

Browse files
committed
Update action to not depend on rush
1 parent 56b62ff commit 19a76dc

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,15 @@ jobs:
1919
node-version: '10.18.1'
2020

2121
- name: Install dependencies
22-
run: node common/scripts/install-run-rush.js install
22+
run: |
23+
cd extensions/ql-vscode
24+
npm install
2325
shell: bash
2426

2527
- name: Build
26-
run: node common/scripts/install-run-rush.js build
28+
run: |
29+
cd extensions/ql-vscode
30+
gulp
2731
shell: bash
2832

2933
- name: Prepare artifacts

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,15 @@ jobs:
3434
node-version: '10.18.1'
3535

3636
- name: Install dependencies
37-
run: node common/scripts/install-run-rush.js install
37+
run: |
38+
cd extensions/ql-vscode
39+
npm install
3840
shell: bash
3941

4042
- name: Build
41-
run: node common/scripts/install-run-rush.js build --release
43+
run: |
44+
cd extensions/ql-vscode
45+
gulp --release
4246
shell: bash
4347

4448
- name: Prepare artifacts

0 commit comments

Comments
 (0)