Update action to not depend on rush
This commit is contained in:
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@@ -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
|
||||||
|
|||||||
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user