From 19a76dcbee051123d4d1bee777cb0e40eca88cd5 Mon Sep 17 00:00:00 2001 From: Jason Reed Date: Thu, 16 Jul 2020 08:43:07 -0400 Subject: [PATCH] Update action to not depend on rush --- .github/workflows/main.yml | 8 ++++++-- .github/workflows/release.yml | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) 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