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.
platform.arch
1 parent 6c856c2 commit ec8fbb5Copy full SHA for ec8fbb5
.github/workflows/node-js-packaging.yml
@@ -279,7 +279,12 @@ jobs:
279
with:
280
image: ${{ steps.docker.outputs.IMAGE }}
281
options: '-v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --platform ${{ steps.docker.outputs.PLATFORM }}'
282
- run: yarn test
+ run: |
283
+ node -e "
284
+ console.log('process.arch:', process.arch);
285
+ console.log('process.platform:', process.platform);
286
+ "
287
+ yarn test
288
publish:
289
name: Publish
290
if: startsWith(github.ref, 'refs/tags/')
0 commit comments