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.
1 parent dc9ebf5 commit ee21b00Copy full SHA for ee21b00
.github/workflows/build-test.yml
@@ -86,7 +86,7 @@ jobs:
86
run: |
87
mkdir temp
88
echo 'console.log("success")' > temp/index.js
89
- output=$(docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} temp/index.js)
+ output=$(docker run -w /app -v "$(pwd):/app" --rm node:${{ matrix.version }}-${{ matrix.variant }} temp/index.js)
90
rm -r temp
91
[ "${output}" = 'success' ]
92
0 commit comments