From 2eddba537fb6b1e4e021e62534d2b3f755033ceb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 05:30:06 +0000 Subject: [PATCH 1/4] build(deps): bump pnpm/action-setup from 5 to 6 Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 5 to 6. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v5...v6) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 2 +- .github/workflows/pull_request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6628e4d..dc28559 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: with: node-version: lts/* - name: Setup PNPM - uses: pnpm/action-setup@v5 + uses: pnpm/action-setup@v6 with: version: latest run_install: true diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 27b10f0..78e6ec3 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -22,7 +22,7 @@ jobs: with: node-version: lts/* - name: Setup PNPM - uses: pnpm/action-setup@v5 + uses: pnpm/action-setup@v6 with: version: latest run_install: true From d5110b5eb22961a9959563ffce2e1afc16a5402a Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Mon, 13 Apr 2026 16:57:36 +0200 Subject: [PATCH 2/4] ci: two steps --- .github/workflows/main.yml | 3 ++- package.json | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dc28559..00a9461 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,8 @@ jobs: uses: pnpm/action-setup@v6 with: version: latest - run_install: true + - name: Install + run: pnpm install - name: Test run: pnpm test - name: Report diff --git a/package.json b/package.json index ca85853..2b59368 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,6 @@ "devDependencies": { "@commitlint/cli": "latest", "@commitlint/config-conventional": "latest", - "@ksmithut/prettier-standard": "latest", "ava": "latest", "c8": "latest", "ci-publish": "latest", @@ -77,7 +76,7 @@ }, "nano-staged": { "*.js": [ - "prettier-standard", + "npx -y @ksmithut/prettier-standard", "standard --fix" ], "package.json": [ From dfdc4cd2847a3d2a11c30eb2a2f3c7b280f4bd47 Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Mon, 13 Apr 2026 19:20:31 +0200 Subject: [PATCH 3/4] ci: tweaks --- .github/workflows/main.yml | 2 +- package.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 00a9461..8a332d5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,7 @@ jobs: with: version: latest - name: Install - run: pnpm install + run: pnpm install --ignore-scripts - name: Test run: pnpm test - name: Report diff --git a/package.json b/package.json index 2b59368..0362085 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,6 @@ }, "nano-staged": { "*.js": [ - "npx -y @ksmithut/prettier-standard", "standard --fix" ], "package.json": [ From 56ff68440e4f8ee7a7ccab2d490f4473372d06f8 Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Mon, 13 Apr 2026 19:23:58 +0200 Subject: [PATCH 4/4] ci: fix install --- .github/workflows/pull_request.yml | 3 ++- .npmrc | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 78e6ec3..6f886f2 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -25,7 +25,8 @@ jobs: uses: pnpm/action-setup@v6 with: version: latest - run_install: true + - name: Install + run: pnpm install --ignore-scripts - name: Test run: pnpm test - name: Report diff --git a/.npmrc b/.npmrc index 218345c..a2372f5 100644 --- a/.npmrc +++ b/.npmrc @@ -8,5 +8,4 @@ resolution-mode=highest save-prefix=~ save=false shamefully-hoist=true -strict-peer-dependencies=false - +strict-peer-dependencies=false \ No newline at end of file