File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 45
45
$image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node").Trim()
46
46
Write-Host "Expected: '${{ matrix.version }}', Got: '$image_node_version'"
47
47
if ($image_node_version -ne ${{ matrix.version }}) {
48
- Write-Host "Node version mismatch"
49
48
exit 1
50
49
}
51
50
95
94
run : |
96
95
$image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node").Trim()
97
96
Write-Host "Expected: '${{ matrix.version }}', Got: '$image_node_version'"
98
- if ($image_node_version -ne ${{ matrix.version }}) {
99
- Write-Host "Node version mismatch"
97
+ if (22.0.7 -ne ${{ matrix.version }}) {
100
98
exit 1
101
99
}
102
100
You can’t perform that action at this time.
0 commit comments