Fix failing GitHub Actions job and update actions to Node.js 24-compatible versions#85
Merged
Merged
Conversation
5 tasks
- Add onCreateExercise prop to ExerciseSelector for inline exercise creation - Show "Create New Exercise" button at top of exercise list in selector - Render ExerciseForm via portal to avoid nested form issues - Add stopPropagation to ExerciseForm submit to prevent portal event bubbling - Update SplitDayEditor to wire createExercise from db/service - Handle newly created exercises that haven't propagated via useLiveQuery - Add CSS styling for the create exercise button Agent-Logs-Url: https://github.com/wulfland/Repstack/sessions/5e8d8917-f175-485e-afd4-d1a6431ea934 Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
Agent-Logs-Url: https://github.com/wulfland/Repstack/sessions/5e8d8917-f175-485e-afd4-d1a6431ea934 Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add option to create new exercises during mesocycle configuration
Allow creating new exercises while configuring mesocycle
Apr 7, 2026
Copilot
AI
changed the title
Allow creating new exercises while configuring mesocycle
Fix failing GitHub Actions job and update actions to Node.js 24-compatible versions
Jun 1, 2026
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.
Analyzed the failing "Lint, Type Check, Test & Build" job (run ID: 70251839027). The immediate failure was a transient
npm ETIMEDOUTnetwork error duringnpm ci. All application code is correct — lint, format, type-check, tests, and build all pass cleanly.Additionally, the workflows used Node.js 20-based actions (
@v4) which are deprecated and will be forced to Node.js 24 starting June 2nd, 2026, which would cause the workflows to break permanently.Changes Made
Updated both
.github/workflows/ci.ymland.github/workflows/deploy.ymlto use Node.js 24-compatible action versions:actions/checkout@v4@v6actions/setup-node@v4@v6codecov/codecov-action@v4@v6actions/upload-artifact@v4@v7actions/configure-pages@v4@v6actions/upload-pages-artifact@v3@v5actions/deploy-pages@v4@v5