-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use workspace versions of ember-math-helpers, remove docfy #1844
Conversation
61fc907
to
4efe07f
Compare
.github/workflows/ci.yml
Outdated
- uses: actions/checkout@v4 | ||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
with: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to specify node version
.github/workflows/ci.yml
Outdated
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
- uses: pnpm/action-setup@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need v4
package.json
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this file you may want something like this to account for nested dependencies:
node-version: 20.x | ||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to specify this if the package.json#packageManager field is set
docs/package.json
Outdated
@@ -73,8 +65,8 @@ | |||
"ember-resolver": "^13.1.0", | |||
"ember-source": "~6.0.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is where v6 is coming from.
I forgot you had another app in here
Leaving this at v6 is incompatible with the public hoist pattern, so i think that may need to go, or the ci would need to also install ember-source for this app as well during each scenario
No description provided.