-
Notifications
You must be signed in to change notification settings - Fork 7
Update JSDOM, improve CI infrastructure #53
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
Conversation
armanbilge
commented
Jun 1, 2022
- Update JSDOM, cache in CI
- Update Node version used in CI
- Configure dependabot
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.
Thanks. Would you mind reorganizing the commits a bit, for example as:
- Update Node.js and setup-node
- Update jsdom (possibility merged with the first one)
- Add dependabot config
build.sbt
Outdated
UseRef.Public("actions", "setup-node", "v3"), | ||
name = Some("Setup NodeJS v16 LTS"), | ||
params = Map("node-version" -> "16", "cache" -> "npm"), | ||
cond = Some("matrix.ci == 'ciNode' || matrix.ci == 'ciJSDOMNodeJS'") |
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.
cond = Some("matrix.ci == 'ciNode' || matrix.ci == 'ciJSDOMNodeJS'") | |
cond = Some("matrix.ci == 'ciNode' || matrix.ci == 'ciJSDOMNodeJS'"), |
build.sbt
Outdated
WorkflowStep.Run( | ||
List("npm install"), | ||
name = Some("Install jsdom"), | ||
cond = Some("matrix.ci == 'ciJSDOMNodeJS'"))) | ||
cond = Some("matrix.ci == 'ciJSDOMNodeJS'") |
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.
cond = Some("matrix.ci == 'ciJSDOMNodeJS'") | |
cond = Some("matrix.ci == 'ciJSDOMNodeJS'"), |
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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 addition probably deserves a separate commit, at least.
2bb64f0
to
b9281be
Compare
Thanks for the review. If you'll merge my PRs, I'm happy to do things your way :) |
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.
Thanks