Skip to content

Commit

Permalink
Bump supported node version to 16
Browse files Browse the repository at this point in the history
Because node 12 is no longer supported.
Add .nvmrc for the ones using nvm. Transparent otherwise.
Bump package version to 2 because this is a breaking change.
  • Loading branch information
genygilles committed Jul 12, 2022
1 parent b509c1e commit d7f88d7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -29,4 +29,3 @@ jobs:
- run: yarn install
- run: yarn validate
- run: yarn test

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Build project
run: |
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@genymotion/device-web-player",
"version": "1.4.4",
"version": "2.0.0",
"description": "Genymotion Virtual Device Web Player",
"main": "dist/js/gm-player.min.js",
"files": [
"dist"
],
"engines": {
"node": ">=12"
"node": ">=16"
},
"scripts": {
"test": "jest --config tests/config.js",
Expand Down

0 comments on commit d7f88d7

Please sign in to comment.