Skip to content

Commit ee21b00

Browse files
committed
Forgot to bind mount the current directory
1 parent dc9ebf5 commit ee21b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
run: |
8787
mkdir temp
8888
echo 'console.log("success")' > temp/index.js
89-
output=$(docker run --rm node:${{ matrix.version }}-${{ matrix.variant }} temp/index.js)
89+
output=$(docker run -w /app -v "$(pwd):/app" --rm node:${{ matrix.version }}-${{ matrix.variant }} temp/index.js)
9090
rm -r temp
9191
[ "${output}" = 'success' ]
9292

0 commit comments

Comments
 (0)