File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242 - name : Test for node version
4343 shell : pwsh
4444 run : |
45- $image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node")
45+ $image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node").Trim()
4646 Write-Host "Expected: '${{ matrix.version }}', Got: '$image_node_version'"
4747 if ($image_node_version -ne ${{ matrix.version }}) {
4848 exit 1
9292 - name : Test for node version
9393 shell : pwsh
9494 run : |
95- $image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node")
95+ $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'"
9797 if ($image_node_version -ne ${{ matrix.version }}) {
9898 exit 1
You can’t perform that action at this time.
0 commit comments