We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 041b79a commit 3137066Copy full SHA for 3137066
.github/workflows/build-test-windows.yml
@@ -103,6 +103,7 @@ jobs:
103
run: |
104
$tmp_file = New-TemporaryFile
105
"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)
108
if ($output -ne 'success') {
109
exit 1
0 commit comments