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 d7ae103 commit b70fb13Copy full SHA for b70fb13
.github/workflows/build-test-windows.yml
@@ -94,7 +94,11 @@ jobs:
94
run: |
95
$image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node").Trim()
96
Write-Host "Expected: '${{ matrix.version }}', Got: '$image_node_version'"
97
- if (${{ matrix.version }} -ne $image_node_version) {
+ $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 }}) {
102
exit 1
103
}
104
0 commit comments