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 7c875fd commit ae05d1cCopy full SHA for ae05d1c
n8n-js/run.sh
@@ -4,7 +4,8 @@ set -o errexit
4
set -o xtrace
5
6
mkdir npm_global_dir
7
-export NPM_CONFIG_PREFIX=$(pwd)/npm_global_dir
+WORKING_DIR=$(pwd)
8
+export NPM_CONFIG_PREFIX=$WORKING_DIR/npm_global_dir
9
export PATH="$NPM_CONFIG_PREFIX/bin:$PATH"
10
11
npm i -g pnpm
@@ -19,10 +20,10 @@ pnpm build
19
20
21
# first, run the crud node tests
22
cd packages/nodes-base/nodes/MongoDb
-pnpm test $(pwd)
23
+pnpm test "$(pwd)"
24
cd -
25
26
# then, run the vector store tests
27
cd packages/@n8n/nodes-langchain/nodes/vector_store/VectorStoreMongoDBAtlas/
28
29
0 commit comments