Skip to content

Commit

Permalink
test: support node 14 and latest browsers (#422)
Browse files Browse the repository at this point in the history
* test: run CI on Node.js 14.x
* test: test on latest versions of chrome, edge and firefox
  • Loading branch information
ctavan committed Apr 24, 2020
1 parent f97fea0 commit c68767e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [8.x, 10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For the creation of [RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDs
- **Complete** - Support for RFC4122 version 1, 3, 4, and 5 UUIDs
- **Cross-platform** - Support for ...
- CommonJS, [ECMAScript Modules](#ecmascript-modules) and UMD builds
- Node 8, 10, 12
- Node 8, 10, 12, 14
- Chrome, Safari, Firefox, Edge, IE 11 browsers
- Webpack and rollup.js module bundlers
- [React Native](#react-native)
Expand Down
2 changes: 1 addition & 1 deletion README_js.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For the creation of [RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDs
- **Complete** - Support for RFC4122 version 1, 3, 4, and 5 UUIDs
- **Cross-platform** - Support for ...
- CommonJS, [ECMAScript Modules](#ecmascript-modules) and UMD builds
- Node 8, 10, 12
- Node 8, 10, 12, 14
- Chrome, Safari, Firefox, Edge, IE 11 browsers
- Webpack and rollup.js module bundlers
- [React Native](#react-native)
Expand Down
6 changes: 3 additions & 3 deletions wdio.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const capabilities = [
{
...commonCapabilities,
browserName: 'Chrome',
browser_version: '80.0',
browser_version: '81.0',
os: 'Windows',
os_version: '10',
},
Expand All @@ -36,7 +36,7 @@ const capabilities = [
{
...commonCapabilities,
browserName: 'Firefox',
browser_version: '73.0',
browser_version: '75.0',
os: 'Windows',
os_version: '10',
},
Expand Down Expand Up @@ -68,7 +68,7 @@ const capabilities = [
{
...commonCapabilities,
browserName: 'Edge',
browser_version: '80.0',
browser_version: '81.0',
os: 'Windows',
os_version: '10',
},
Expand Down

0 comments on commit c68767e

Please sign in to comment.