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

Remove node 13 tests; change 12.16 to latest 12.x.x #1148

Merged
merged 1 commit into from Dec 3, 2020
Merged
Changes from all commits
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
47 changes: 15 additions & 32 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
matrix:
os: [ubuntu, windows]
# Don't forget to add all new flavors to this list!
flavor: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
flavor: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
include:
# Node 10
- flavor: 1
Expand All @@ -49,72 +49,55 @@ jobs:
typescript: latest
typescriptFlag: latest
# Node 12.15
# TODO Add comments about why we test 12.15; I think git blame says it's because of an ESM behavioral change that happened at 12.16
- flavor: 2
node: 12.15
nodeFlag: 12_15
typescript: latest
typescriptFlag: latest
# Node 12.16
# TODO Add comments about why we test 2.15 and 2.16; I think git blame says it's because of an ESM behavioral change that happened at this version number
# TODO switch to '12' to get latest patch?
# Node 12
- flavor: 3
node: 12.16
nodeFlag: 12_16
node: 12
nodeFlag: 12
typescript: latest
typescriptFlag: latest
# Node 13
# Node 14.13.0
# To test ESM builtin module resolution immediately before a node behavioral change: https://github.com/TypeStrong/ts-node/issues/1130
- flavor: 4
node: 13
nodeFlag: 13
node: 14.13.0
nodeFlag: 14_13_0
typescript: latest
typescriptFlag: latest
- flavor: 5
node: 13
nodeFlag: 13
typescript: 2.7
typescriptFlag: 2_7
- flavor: 6
node: 13
nodeFlag: 13
typescript: next
typescriptFlag: next
# Node 14
- flavor: 7
- flavor: 5
node: 14
nodeFlag: 14
typescript: latest
typescriptFlag: latest
- flavor: 8
- flavor: 6
node: 14
nodeFlag: 14
typescript: 2.7
typescriptFlag: 2_7
- flavor: 9
- flavor: 7
node: 14
nodeFlag: 14
typescript: next
typescriptFlag: next
# Node 14.13.0
# To test ESM builtin module resolution immediately before a node behavioral change: https://github.com/TypeStrong/ts-node/issues/1130
- flavor: 10
node: 14.13.0
nodeFlag: 14_13_0
typescript: latest
typescriptFlag: latest
# Node 15
- flavor: 11
- flavor: 8
node: 15
nodeFlag: 15
typescript: latest
typescriptFlag: latest
downgradeNpm: true
- flavor: 12
- flavor: 9
node: 15
nodeFlag: 15
typescript: 2.7
typescriptFlag: 2_7
downgradeNpm: true
- flavor: 13
- flavor: 10
node: 15
nodeFlag: 15
typescript: next
Expand Down