diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 044026c37..292cd976c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,11 +19,15 @@ jobs: node-version: '10.18.1' - name: Install dependencies - run: node common/scripts/install-run-rush.js install + run: | + cd extensions/ql-vscode + npm install shell: bash - name: Build - run: node common/scripts/install-run-rush.js build + run: | + cd extensions/ql-vscode + gulp shell: bash - name: Prepare artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cae893463..eda1341f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,11 +34,15 @@ jobs: node-version: '10.18.1' - name: Install dependencies - run: node common/scripts/install-run-rush.js install + run: | + cd extensions/ql-vscode + npm install shell: bash - name: Build - run: node common/scripts/install-run-rush.js build --release + run: | + cd extensions/ql-vscode + gulp --release shell: bash - name: Prepare artifacts