Skip to content
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

Merged
merged 4 commits into from Apr 23, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -26,20 +26,20 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node: [13.x, 12.x, 10.x, "10.12.0"]
node: [14.x, 12.x, 10.x, "10.12.0"]
mysticatea marked this conversation as resolved.
Show resolved Hide resolved
exclude:
- os: windows-latest
node: "10.12.0"
- os: windows-latest
node: 10.x
- os: windows-latest
node: 13.x
node: 12.x
Copy link
Member

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.

Copy link
Contributor Author

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?

Copy link
Contributor Author

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

Copy link
Member

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.

- os: macOS-latest
node: "10.12.0"
- os: macOS-latest
node: 10.x
- os: macOS-latest
node: 13.x
node: 12.x
fisker marked this conversation as resolved.
Show resolved Hide resolved
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
Expand Down