-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Pull Pylance with Pyright 1.1.412 #11639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| *.json linguist-language=JSON-with-Comments | ||
| **/pnpm-lock.yaml text eol=lf |
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,20 @@ | ||
| # Standard npm install using the public npm registry. | ||
| # Standard pnpm install using the public npm registry. | ||
|
|
||
| name: npm install (public registry) | ||
| name: pnpm install (public registry) | ||
| description: Install the pnpm workspace from the public npm registry. | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| working-directory: | ||
| description: Directory in which to run pnpm install | ||
| default: '.' | ||
| required: false | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - uses: ./.github/actions/npm-cache-dir | ||
|
|
||
| - name: Standard npm install | ||
| - name: Standard pnpm install | ||
| shell: bash | ||
| run: npm run install:all | ||
| working-directory: ${{ inputs.working-directory }} | ||
| env: | ||
| NPM_CONFIG_REGISTRY: https://registry.npmjs.org/ | ||
| run: pnpm run install:all | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This action accepts arbitrary
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The public-registry path runs |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| **/package-lock.json | ||
| **/pnpm-lock.yaml | ||
| **/dist/** | ||
| **/out/** | ||
| **/typeshed-fallback/** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 784698179a5627072df39bbe0fcadb55bb7dd408 | ||
| af737e1f2106f0fcd1e4c921a347f7873066cad4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trusted builds invoke direct
pnpm install, while fork builds usepnpm run install:all; future changes to that script could therefore produce branch-dependent environments. Keep authentication conditional, but invoke the same shared installation entrypoint in both actions.[verified]