mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 02:33:53 -06:00
Merge pull request #40576 from weswigham/add-pyright
Add pyright user test
This commit is contained in:
commit
692502e99f
9
tests/baselines/reference/docker/pyright.log
Normal file
9
tests/baselines/reference/docker/pyright.log
Normal file
@ -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"
|
||||
10
tests/cases/docker/pyright/Dockerfile
Normal file
10
tests/cases/docker/pyright/Dockerfile
Normal file
@ -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" ]
|
||||
Loading…
x
Reference in New Issue
Block a user