Skip to content

Commit

Permalink
chore(ci): revert debugging changes (#1791)
Browse files Browse the repository at this point in the history
- os changes
- github logging
- vscode logging
  • Loading branch information
Druue committed Jul 25, 2024
1 parent e3a82cc commit d1a606e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/e2e_published_vsix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode/src/__test__/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ 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
// * in the following format: '${publisher}.${name}:${logLevel}'.
// * 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,
Expand Down

0 comments on commit d1a606e

Please sign in to comment.