Skip to content

Commit ec8fbb5

Browse files
committed
show platform.arch in the test docker container
1 parent 6c856c2 commit ec8fbb5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/node-js-packaging.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,12 @@ jobs:
279279
with:
280280
image: ${{ steps.docker.outputs.IMAGE }}
281281
options: '-v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --platform ${{ steps.docker.outputs.PLATFORM }}'
282-
run: yarn test
282+
run: |
283+
node -e "
284+
console.log('process.arch:', process.arch);
285+
console.log('process.platform:', process.platform);
286+
"
287+
yarn test
283288
publish:
284289
name: Publish
285290
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)