We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3364e08 commit bf30576Copy full SHA for bf30576
.github/workflows/job.test.yml
@@ -35,8 +35,21 @@ jobs:
35
matrix:
36
python: [3.6, 3.7, 3.8]
37
os: [ubuntu-16.04, macos-10.14, vs2017-win2016]
38
- nodejs: ['>=10,<11.0.0.a0', '>=13,<14.0.0a0']
39
lab: ['>=2.2.0,<3.0.0a0']
+ include:
40
+ # if using 3.6, use an old node
41
+ - python: 3.6
42
+ # Node 10 end-of-life: April 2021
43
+ nodejs: '>=10,<11.0.0.a0'
44
+ # if using 3.7, use newer node, etc...
45
+ - python: 3.7
46
+ # Node 12 end-of-life: April 2022
47
+ nodejs: '>=12,<13.0.0.a0'
48
+ - python: 3.8
49
+ # Node 14 end-of-life: April 2023
50
+ # TODO Node 13 is no longer supported
51
+ nodejs: '>=13,<14.0.0.a0'
52
+
53
steps:
54
- uses: actions/checkout@v2
55
0 commit comments