From 09e472d4337cc52008b2bd5ce68a1de9094a5527 Mon Sep 17 00:00:00 2001 From: LGLabGreg Date: Sun, 9 Nov 2025 12:03:04 +0000 Subject: [PATCH] ci: install latest npm --- .changeset/smart-plums-grow.md | 6 ++++++ .github/workflows/ci.yml | 3 +++ .github/workflows/release.yml | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 .changeset/smart-plums-grow.md diff --git a/.changeset/smart-plums-grow.md b/.changeset/smart-plums-grow.md new file mode 100644 index 0000000..4edc1d7 --- /dev/null +++ b/.changeset/smart-plums-grow.md @@ -0,0 +1,6 @@ +--- +'@lglab/react-qr-code': patch +'reactqrcode.com': patch +--- + +ci: install latest npm diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2698c6c..085b8a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,9 @@ jobs: with: node-version: 20 + - name: Install latest npm + run: npm install -g npm@latest + - name: Install pnpm uses: pnpm/action-setup@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71e4f64..ac65a3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,6 +28,9 @@ jobs: node-version: 20 registry-url: 'https://registry.npmjs.org' + - name: Install latest npm + run: npm install -g npm@latest + - name: Install pnpm uses: pnpm/action-setup@v4