From 58317f99cb17d26c4c45ea4f068e9be4c11e4eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E6=A1=93=E6=A1=93?= Date: Thu, 2 Mar 2023 20:39:24 +0800 Subject: [PATCH] chore(ci): change registry URL to `npmjs.com` from `npmjs.org` --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5520a5..da34b2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16 - registry-url: https://registry.npmjs.org/ + registry-url: https://registry.npmjs.com # Step III - name: Install Dependencies run: npm ci @@ -47,7 +47,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ + registry-url: https://registry.npmjs.com # Step III - name: Install Dependencies run: npm ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24b4cfe..9ae223b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16 - registry-url: https://registry.npmjs.org/ + registry-url: https://registry.npmjs.com # Step III - name: Install Dependencies run: npm ci