Skip to content

Commit

Permalink
FIX (GithubActions) @W-15620002@: Reverted Node LTS hardcode. (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeingold35 committed Apr 30, 2024
1 parent 9fa1955 commit 1c94279
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: 'Set up NodeJS'
uses: actions/setup-node@v4
with:
node-version: '20.12.1' # Node LTS should always be fine.
node-version: 'lts/*' # Node LTS should always be fine.
- name: 'Install Java v11'
uses: actions/setup-java@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion src/test/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ async function main() {
[...args, '--install-extension', EXTENSION_PACK_ID],
{
encoding: 'utf-8',
stdio: 'inherit'
stdio: 'inherit',
shell: process.platform === 'win32'
}
);

Expand Down

0 comments on commit 1c94279

Please sign in to comment.