File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 $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 }}) {
48+ Write-Host "Node version mismatch"
4849 exit 1
4950 }
51+
52+ exit 0
5053
5154 - name : Verify entrypoint runs regular, non-executable files with node
5255 shell : pwsh
9598 $image_node_version = (docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} node --print "process.versions.node").Trim()
9699 Write-Host "Expected: '${{ matrix.version }}', Got: '$image_node_version'"
97100 if ($image_node_version -ne ${{ matrix.version }}) {
98- exit 2
101+ Write-Host "Node version mismatch"
102+ exit 1
99103 }
104+
105+ exit 0
100106
101107 - name : Verify entrypoint runs regular, non-executable files with node
102108 shell : pwsh
You can’t perform that action at this time.
0 commit comments