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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: パッケージをインストール
run: pnpm install
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,22 @@ jobs:
publish:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
Comment on lines +17 to +19
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

steps:
- name: Checkout
uses: actions/checkout@v3

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Setup node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: 18
node-version: 24
registry-url: 'https://registry.npmjs.org'

- name: ビルド時に使用する環境変数を設定
Expand Down Expand Up @@ -72,7 +75,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish canary
run: pnpm lerna publish from-package --yes --pre-dist-tag canary
run: pnpm lerna publish from-package --yes --pre-dist-tag canary --provenance
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 changes: 6 additions & 4 deletions .github/workflows/publish-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,22 @@ jobs:
publish:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Setup node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: 18
node-version: 24
registry-url: 'https://registry.npmjs.org'

- name: ビルド時に使用する環境変数を設定
Expand Down Expand Up @@ -72,9 +75,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish latest
run: pnpm lerna publish from-package --yes
run: pnpm lerna publish from-package --yes --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: パッケージをインストール
run: pnpm install
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"private": true,
"devDependencies": {
"@lerna-lite/cli": "^1.15.1",
"@lerna-lite/cli": "^4.9.0",
"@lerna-lite/publish": "^4.9.0",
"@lerna-lite/version": "^4.9.0",
Comment on lines +4 to +6
Copy link
Contributor Author

@cm-dyoshikawa cm-dyoshikawa Oct 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

アップデートで publish と version のパッケージが分離されたので、明示的にインストールが必要

"@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
Expand Down Expand Up @@ -37,7 +39,7 @@
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"pnpm": ">=9 <10"
"pnpm": ">=10 <11"
},
"simple-git-hooks": {
"pre-commit": "pnpm secretlint"
Expand Down
2 changes: 1 addition & 1 deletion packages/zenn-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"zenn-model": "workspace:*"
},
"engines": {
"node": ">=14.0.0"
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
Expand Down
Loading