Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
version: 2
registries:
npm-azure:
npm:
type: npm-registry
url: https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/npm/registry/
username: powershell
password: ${{ secrets.AZURE_NPM_PASSWORD }}
url: https://registry.npmjs.org/
updates:
- package-ecosystem: npm
directory: "/"
registries:
- npm-azure
- npm
labels: [ ]
schedule:
interval: weekly
Expand Down
11 changes: 2 additions & 9 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,9 @@ jobs:
uses: actions/setup-dotnet@v4
with:
cache: true
cache-dependency-path: PowerShellEditorServices/**/packages.lock.json
cache-dependency-path: PowerShellEditorServices/**/*.csproj
global-json-file: PowerShellEditorServices/global.json

- name: Remove Azure Artifact Feed configurations
shell: pwsh
run: |
Remove-Item -Force .npmrc
Remove-Item test/mocks/BinaryModule/NuGet.Config
Remove-Item ../PowerShellEditorServices/NuGet.Config
working-directory: vscode-powershell
config-file: PowerShellEditorServices/nuget.config

- name: Install PSResources
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; We use Dependabot to update our packages, so we want to add without a prefix
save-exact=true
; We download from a private feed during the release process
registry=https://pkgs.dev.azure.com/mscodehub/PowerShellCore/_packaging/PowerShellCore_PublicPackages/npm/registry/
registry=https://pkgs.dev.azure.com/powershell/PowerShell/_packaging/powershell/npm/registry/
always-auth=true
Loading