Skip to content

Commit 3102915

Browse files
committed
⚒ update CI.yml to add Node 13
1 parent 0fb2dd0 commit 3102915

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

.github/workflows/CI.yml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CI
22
on:
33
push:
4-
branches: [master, gha]
4+
branches: [master]
55
pull_request:
66
branches: [master]
77
schedule:
@@ -32,15 +32,21 @@ jobs:
3232
matrix:
3333
os: [ubuntu-latest, windows-latest, macOS-latest]
3434
eslint: [6.x, 5.x]
35-
node: [12.x, 10.x, 8.x]
35+
node: [13.x, 12.x, 10.x, 8.x]
3636
exclude:
37-
# On Windows, run tests with only the latest environments.
37+
# On Windows, run tests with only the latest LTS environments.
38+
- os: windows-latest
39+
eslint: 6.x
40+
node: 13.x
3841
- os: windows-latest
3942
eslint: 6.x
4043
node: 10.x
4144
- os: windows-latest
4245
eslint: 6.x
4346
node: 8.x
47+
- os: windows-latest
48+
eslint: 5.x
49+
node: 13.x
4450
- os: windows-latest
4551
eslint: 5.x
4652
node: 12.x
@@ -50,13 +56,19 @@ jobs:
5056
- os: windows-latest
5157
eslint: 5.x
5258
node: 8.x
53-
# On macOS, run tests with only the latest environments.
59+
# On macOS, run tests with only the latest LTS environments.
60+
- os: macOS-latest
61+
eslint: 6.x
62+
node: 13.x
5463
- os: macOS-latest
5564
eslint: 6.x
5665
node: 10.x
5766
- os: macOS-latest
5867
eslint: 6.x
5968
node: 8.x
69+
- os: macOS-latest
70+
eslint: 5.x
71+
node: 13.x
6072
- os: macOS-latest
6173
eslint: 5.x
6274
node: 12.x
@@ -66,7 +78,10 @@ jobs:
6678
- os: macOS-latest
6779
eslint: 5.x
6880
node: 8.x
69-
# Run ESLint 5.x tests on only the latest Node.
81+
# Run ESLint 5.x tests on only the latest LTS Node.
82+
- os: ubuntu-latest
83+
eslint: 5.x
84+
node: 13.x
7085
- os: ubuntu-latest
7186
eslint: 5.x
7287
node: 10.x

0 commit comments

Comments
 (0)