Skip to content

Commit 7f65ab1

Browse files
committed
Fixed verify entrypoint 22
1 parent 3137066 commit 7f65ab1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-test-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ jobs:
103103
run: |
104104
$tmp_file = New-TemporaryFile
105105
"console.log('success')" | Out-File -FilePath $tmp_file -Encoding utf8
106-
Write-Host "Docker volume mount: $(${{ github.workspace }})$tmp_file:/app/index.js"
107-
$output = (docker run --rm -v "${{ github.workspace }}$tmp_file:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
106+
Write-Host "Docker volume mount: $(${{ github.workspace }})${tmp_file}:/app/index.js"
107+
$output = (docker run --rm -v "${{ github.workspace }}${tmp_file}:/app/index.js" node:${{ matrix.version }}-${{ matrix.variant }} app/index.js)
108108
if ($output -ne 'success') {
109109
exit 1
110110
}

0 commit comments

Comments
 (0)