-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Pull Pylance with Pyright 1.1.411 #11631
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.
📍 .github/actions/standard-npm-install/action.yml:20 [verified] |
||
| 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.
The trusted path uses a frozen lockfile, but the fork path uses
pnpm run install:allwithout equivalent lockfile strictness. This can let fork CI pass after lockfile drift that trusted CI rejects; please align the install commands or document why the divergence is intentional. [verified]