diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-03-07 16:03:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-07 07:03:52 +0000 |
| commit | 83c3bb839f50fc24f667611f6852db3b14bd05e6 (patch) | |
| tree | fab1debc7a8d4036ebf371e8cea062a2aae9343a /.github/workflows/storybook.yml | |
| parent | New translations ja-jp.yml (Chinese Traditional) (#15618) (diff) | |
| download | misskey-83c3bb839f50fc24f667611f6852db3b14bd05e6.tar.gz misskey-83c3bb839f50fc24f667611f6852db3b14bd05e6.tar.bz2 misskey-83c3bb839f50fc24f667611f6852db3b14bd05e6.zip | |
deps: update pnpm to v10 (#15588)
* Revert "fix(build): corepackのバグの回避 (#15387)"
This reverts commit 9c70a4e63130f85d191c5bc16d0a4be5cd1dece2.
* deps: update pnpm to v10
* fix broken lockfile
* update changelog
* fix
* fix
* Revert "fix"
This reverts commit 4abc6c194edc20989f5ec97d343307a4b8c9047d.
* fix
* fix
* attempt to fix docker build
* lint fixes
* fix: revertしすぎた
* detect pnpm version and install it
* fix: そもそもpnpmを2回入れる必要がないかも
* fix
* refactor
* fix
* refactor: remove unnecessary arg
* Update Dockerfile
* update pnpm to v10.6.1
* Update Changelog
* chore: use node to avoid installing jq
Diffstat (limited to '.github/workflows/storybook.yml')
| -rw-r--r-- | .github/workflows/storybook.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/storybook.yml b/.github/workflows/storybook.yml index 9e5a79faac..9fdbeab913 100644 --- a/.github/workflows/storybook.yml +++ b/.github/workflows/storybook.yml @@ -13,9 +13,6 @@ on: # This is a waste of chromatic build quota, so we don't run storybook CI on pull requests targets master. - master -env: - COREPACK_DEFAULT_TO_LATEST: 0 - jobs: build: # chromatic is not likely to be available for fork repositories, so we disable for fork repositories. @@ -43,14 +40,13 @@ jobs: run: | echo "base=$(git rev-list --parents -n1 HEAD | cut -d" " -f2)" >> $GITHUB_OUTPUT git checkout $(git rev-list --parents -n1 HEAD | cut -d" " -f3) - - name: Install pnpm - uses: pnpm/action-setup@v4 + - name: Setup pnpm + uses: pnpm/action-setup@v4.1.0 - name: Use Node.js 20.x uses: actions/setup-node@v4.2.0 with: node-version-file: '.node-version' cache: 'pnpm' - - run: corepack enable - run: pnpm i --frozen-lockfile - name: Check pnpm-lock.yaml run: git diff --exit-code pnpm-lock.yaml |