-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Chore: Run tests on Node.js v14 #13210
Conversation
.github/workflows/ci.yml
Outdated
exclude: | ||
- os: windows-latest | ||
node: "10.12.0" | ||
- os: windows-latest | ||
node: 10.x | ||
- os: windows-latest | ||
node: 13.x | ||
node: 12.x |
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.
I think we can probably just remove this entry as we still want to test 12.x and this would exclude it.
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.
We already test 12.x on linux, don't you think 10 + 14 is enough for macOS and windows?
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.
Hmm, sorry I though 10.x is tested, seems we only test 12 on windows before, make sense, I'll add 12.x
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.
I have intended the job to test ESLint with multiple versions of Node.js on Linux and with the LTS Node.js on multiple platforms. Because of avoiding combination explosion. I should write a comment about my intention, sorry.
Therefore, I think we should test on Windows/Mac with the LTS 12.x
.
Thank you for contributing to ESLint! |
Prerequisites checklist
What is the purpose of this pull request? (put an "X" next to an item)
[ ] Documentation update
[ ] Bug fix (template)
[ ] New rule (template)
[ ] Changes an existing rule (template)
[ ] Add autofixing to a rule
[ ] Add a CLI option
[ ] Add something to the core
[X] Other, please explain:
Run tests on Node.js v14
What changes did you make? (Give an overview)
Add Node.js v14, remove v13 , v12 on
windows
andmacOS
Is there anything you'd like reviewers to focus on?
Not much