diff --git a/.github/workflows/insiders.yml b/.github/workflows/insiders.yml index 0c22f7b44..213acb030 100644 --- a/.github/workflows/insiders.yml +++ b/.github/workflows/insiders.yml @@ -29,7 +29,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 18.15.x + node-version: 18.18.1 cache: npm - name: Run Tests (macOS, windows) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1e02848b1..ee46574ce 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 18.15.x + node-version: 18.18.1 cache: npm - name: Run Tests (macOS, windows) diff --git a/README.md b/README.md index 6f477c753..afcc6c096 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,10 @@ Extension Tester is a package that is designed to help you run UI tests for your ### Requirements - **Visual Studio Code 1.37+** -- **NodeJS <=18.15.x** +- **NodeJS** + - 16.x.x + - 18.15.x + - 18.18.1 - Supported Operating Systems - **Linux** - **Windows** diff --git a/src/util/codeUtil.ts b/src/util/codeUtil.ts index 0b8933532..5bc4cfc41 100644 --- a/src/util/codeUtil.ts +++ b/src/util/codeUtil.ts @@ -363,7 +363,7 @@ export class CodeUtil { } else if (platform === 'win32') { platform += arch === 'x64' ? `-${arch}` : ''; platform += '-archive'; - this.cliEnv = `set ${this.cliEnv} &&`; + // this.cliEnv = `set ${this.cliEnv} &&`; } return platform;