Update action to not depend on rush

This commit is contained in:
Jason Reed
2020-07-16 08:43:07 -04:00
parent 56b62ff758
commit 19a76dcbee
2 changed files with 12 additions and 4 deletions

View File

@@ -19,11 +19,15 @@ jobs:
node-version: '10.18.1' node-version: '10.18.1'
- name: Install dependencies - name: Install dependencies
run: node common/scripts/install-run-rush.js install run: |
cd extensions/ql-vscode
npm install
shell: bash shell: bash
- name: Build - name: Build
run: node common/scripts/install-run-rush.js build run: |
cd extensions/ql-vscode
gulp
shell: bash shell: bash
- name: Prepare artifacts - name: Prepare artifacts

View File

@@ -34,11 +34,15 @@ jobs:
node-version: '10.18.1' node-version: '10.18.1'
- name: Install dependencies - name: Install dependencies
run: node common/scripts/install-run-rush.js install run: |
cd extensions/ql-vscode
npm install
shell: bash shell: bash
- name: Build - name: Build
run: node common/scripts/install-run-rush.js build --release run: |
cd extensions/ql-vscode
gulp --release
shell: bash shell: bash
- name: Prepare artifacts - name: Prepare artifacts