Skip to content

Commit b70fb13

Browse files
committed
Bytes
1 parent d7ae103 commit b70fb13

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ jobs:
9494
run: |
9595
$image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node").Trim()
9696
Write-Host "Expected: '${{ matrix.version }}', Got: '$image_node_version'"
97-
if (${{ matrix.version }} -ne $image_node_version) {
97+
$bytes = [System.Text.Encoding]::UTF8.GetBytes(${{ matrix.version }})
98+
Write-Host "Matrix version bytes: $bytes"
99+
$bytes = [System.Text.Encoding]::UTF8.GetBytes($image_node_version)
100+
Write-Host "Image version bytes: $bytes"
101+
if ($image_node_version -ne ${{ matrix.version }}) {
98102
exit 1
99103
}
100104

0 commit comments

Comments
 (0)