Skip to content

Commit

Permalink
Add Node.js 12 CI (#525)
Browse files Browse the repository at this point in the history
* node 12 ci first attempt

* leveldown

* node12 skips

* fixup remaining tests

* leveldown fix
  • Loading branch information
guybedford authored Mar 27, 2020
1 parent 788b64d commit 93b5969
Show file tree
Hide file tree
Showing 5 changed files with 458 additions and 364 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [10]
node: [10, 12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@google-cloud/firestore": "^2.2.0",
"@sentry/node": "^4.3.0",
"@tensorflow/tfjs-node": "^0.3.0",
"@zeit/webpack-asset-relocator-loader": "0.6.2",
"@zeit/webpack-asset-relocator-loader": "0.6.4",
"analytics-node": "^3.3.0",
"apollo-server-express": "^2.2.2",
"arg": "^4.1.0",
Expand Down Expand Up @@ -61,7 +61,7 @@
"jimp": "^0.5.6",
"jugglingdb": "2.0.1",
"koa": "^2.6.2",
"leveldown": "^4.0.1",
"leveldown": "^5.6.0",
"lighthouse": "^5.0.0",
"loopback": "^3.24.0",
"mailgun": "^0.5.0",
Expand All @@ -72,7 +72,7 @@
"mysql": "^2.16.0",
"node-gyp": "^3.8.0",
"npm": "^6.13.4",
"oracledb": "^3.1.2",
"oracledb": "^4.2.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"path-platform": "^0.11.15",
Expand All @@ -87,7 +87,7 @@
"rxjs": "^6.3.3",
"saslprep": "^1.0.2",
"sequelize": "^5.8.6",
"sharp": "^0.21.1",
"sharp": "^0.25.2",
"shebang-loader": "^0.0.1",
"socket.io": "^2.2.0",
"source-map-support": "^0.5.9",
Expand All @@ -105,7 +105,6 @@
"vue": "^2.5.17",
"vue-server-renderer": "^2.5.17",
"webpack": "5.0.0-alpha.17",
"when": "^3.7.8",
"yoga-layout": "^1.9.3"
"when": "^3.7.8"
}
}
7 changes: 5 additions & 2 deletions test/integration/sharp.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ const roundedCorners = Buffer.from(

sharp()
.resize(200, 200)
.overlayWith(roundedCorners, { cutout: true })
.png();
.composite([{
input: roundedCorners,
blend: 'dest-in'
}])
.png();
1 change: 0 additions & 1 deletion test/integration/yoga-layout.js

This file was deleted.

Loading

0 comments on commit 93b5969

Please sign in to comment.