diff --git a/tests/baselines/reference/docker/pyright.log b/tests/baselines/reference/docker/pyright.log new file mode 100644 index 00000000000..aa5412d777c --- /dev/null +++ b/tests/baselines/reference/docker/pyright.log @@ -0,0 +1,9 @@ +Exit Code: 0 +Standard output: + + + +Standard error: +lerna notice cli vX.X.X +lerna info Executing command in 3 packages: "tsc --noEmit" +lerna success exec Executed command in 3 packages: "tsc --noEmit" diff --git a/tests/cases/docker/pyright/Dockerfile b/tests/cases/docker/pyright/Dockerfile new file mode 100644 index 00000000000..aebe7ad202a --- /dev/null +++ b/tests/cases/docker/pyright/Dockerfile @@ -0,0 +1,10 @@ +FROM node:current +RUN git clone https://github.com/microsoft/pyright.git /pyright +WORKDIR /pyright +RUN git pull +RUN npm i +COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz +RUN npm install /typescript.tgz --exact --ignore-scripts --save-dev +RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts --save-dev +ENTRYPOINT [ "npx" ] +CMD [ "lerna", "exec", "--stream", "--concurrency", "1", "--no-bail", "--", "tsc", "--noEmit" ] \ No newline at end of file