Skip to content

Commit

Permalink
Add Node.js 14 to CI (#4976)
Browse files Browse the repository at this point in the history
* Add Node.js 14 to CI

* Use Node.js 14 by default
  • Loading branch information
hudochenkov committed Oct 11, 2020
1 parent 896db69 commit 9dd32c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
node: [12]
node: [14]
os: [ubuntu-latest]

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12]
node: [10, 12, 14]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- os: ubuntu-latest
node: 12
node: 14

steps:
- uses: actions/checkout@v2
Expand All @@ -51,7 +51,7 @@ jobs:

strategy:
matrix:
node: [12]
node: [14]
os: [ubuntu-latest]

steps:
Expand Down

0 comments on commit 9dd32c4

Please sign in to comment.