bump deps - #186
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s tooling/runtime baselines and CI/dev-environment setup to align with newer Node/Yarn and Ruby versions, along with refreshing JavaScript dev dependencies and lockfile.
Changes:
- Bump JavaScript tooling dependencies (Prettier, html-validate, markdownlint-cli2, etc.) and regenerate
yarn.lock. - Standardize Ruby version via a checked-in
.ruby-versionand update docs/CI/devcontainer to use it. - Update GitHub Actions workflows (new major versions of actions and explicit Corepack/Yarn activation) and set Node version via
.nvmrc.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
yarn.lock |
Regenerated lockfile reflecting updated dependency graph and Yarn lock metadata version. |
package.json |
Bumps dev tooling versions and updates packageManager to Yarn 4.18.0. |
README.md |
Updates local setup instructions to reference .ruby-version and adds guidance for keeping it in sync with GitHub Pages. |
.ruby-version |
Pins Ruby version for CI/devcontainer/local tooling consistency. |
.nvmrc |
Pins Node version used by CI and local tooling. |
.github/workflows/code-lint.yml |
Updates actions versions and ensures Corepack/Yarn activation before installs/lint. |
.github/workflows/build-test-deploy.yml |
Updates actions versions, reads Ruby version from .ruby-version, and ensures Corepack/Yarn activation. |
.devcontainer/devcontainer.json |
Switches devcontainer features to rbenv/nvm-based versioning and installs Ruby/Node/Yarn accordingly in postCreateCommand. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+19
to
+22
| ```sh | ||
| brew install rbenv | ||
| rbenv install # installs the version from .ruby-version | ||
| ``` |
| Keep [.ruby-version](.ruby-version) matching [the Ruby that GitHub Pages runs](https://pages.github.com/versions/) (used by CI, the dev container, and rbenv locally): | ||
|
|
||
| ```sh | ||
| curl -s https://pages.github.com/versions.json | jq -r .ruby > .ruby-version # Send PR if changed |
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.
No description provided.