diff --git a/.github/workflows/e2e_published_vsix.yml b/.github/workflows/e2e_published_vsix.yml index f2ba6cdd96..d18c173e00 100644 --- a/.github/workflows/e2e_published_vsix.yml +++ b/.github/workflows/e2e_published_vsix.yml @@ -16,7 +16,8 @@ env: SLACK_ICON_EMOJI: ':robot_face:' ENVIRONMENT: ${{ secrets.ENVIRONMENT }} SLACK_MSG_AUTHOR: prisma-bot - ACTIONS_STEP_DEBUG: true + # * Enables github logging + # ACTIONS_STEP_DEBUG: true jobs: test: @@ -26,7 +27,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, macos-13, windows-latest] + os: [ubuntu-latest, macos-latest, windows-latest] outputs: installed-extension: ${{ steps.install.outputs.installed-extension }} steps: diff --git a/packages/vscode/src/__test__/runTest.ts b/packages/vscode/src/__test__/runTest.ts index ce42ad0533..936f22c186 100644 --- a/packages/vscode/src/__test__/runTest.ts +++ b/packages/vscode/src/__test__/runTest.ts @@ -24,7 +24,7 @@ function test({ PRISMA_USE_LOCAL_LS, version }: { PRISMA_USE_LOCAL_LS: string; v // ? https://code.visualstudio.com/docs/editor/settings-sync '--sync off', // * Print verbose output (implies --wait). - '--verbose', + // '--verbose', // * Log level to use. Default is 'info'. // * Allowed values are 'critical', 'error', 'warn', 'info', 'debug', 'trace', 'off'. // * You can also configure the log level of an extension by passing extension id and log level @@ -32,7 +32,7 @@ function test({ PRISMA_USE_LOCAL_LS, version }: { PRISMA_USE_LOCAL_LS: string; v // * For example: 'vscode.csharp:trace'. Can receive one or more such entries. // ? It says multiple can be passed, unsure if this means // ? multiple for one extension. So lets start like this. - '--log critical', + // '--log critical', ], extensionTestsEnv: { PRISMA_USE_LOCAL_LS,