build(deps-dev): bump unocss from 66.6.0 to 66.7.4#1613
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
f43e1d3 to
965ab92
Compare
965ab92 to
3959026
Compare
Member
|
"Explain Error" でCopilotに聞いてみました。 Root cause: the workflow never sets up Node.js before FixAdd an explicit Node setup step in name: Check format and test build
'on':
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.14.0'
cache: 'pnpm'
- name: Setup pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run ESLint
run: pnpm lint:check
- name: Run Prettier
run: pnpm prettier:check
- name: Run Astro Check
run: pnpm astro:check
- name: Run test
run: pnpm test
- name: Run Build
run: pnpm buildWhy this is the right fix
Relevant files
|
Member
|
commit ID指定のパッチ形式も用意してもらいました。 diff --git a/.github/workflows/check-and-build.yml b/.github/workflows/check-and-build.yml
index 1819575..0000000 100644
--- a/.github/workflows/check-and-build.yml
+++ b/.github/workflows/check-and-build.yml
@@ -14,8 +14,14 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
+ - name: Setup Node.js
+ uses: actions/setup-node@d7a9d2cfd0f4c6c7b7d5f2780b274e76a8cb1f7d # v4.0.4
+ with:
+ node-version: '22.14.0'
+ cache: 'pnpm'
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run ESLint
run: pnpm lint:check |
Bumps [unocss](https://github.com/unocss/unocss/tree/HEAD/packages-presets/unocss) from 66.6.0 to 66.7.4. - [Release notes](https://github.com/unocss/unocss/releases) - [Commits](https://github.com/unocss/unocss/commits/v66.7.4/packages-presets/unocss) --- updated-dependencies: - dependency-name: unocss dependency-version: 66.7.4 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
3959026 to
6a12530
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps unocss from 66.6.0 to 66.7.4.
Release notes
Sourced from unocss's releases.
... (truncated)
Commits
9dd91d9chore: release v66.7.4cf3dce1chore: release v66.7.4-beta.19f55e06chore: release v66.7.38242100chore: release v66.7.22cc1b30chore: release v66.7.2-beta.147c7146chore: release v66.7.120e7530chore: release v66.7.0803550echore: release v66.7.0-beta.1df10fedchore: remove node engine requirement from subpackage6bb993bchore: adjust project configuration (#5198)