1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Drop support for Node 16 (#3533)

* Stop running tests on Node 16

* update package.json
This commit is contained in:
Richard van der Hoff
2023-06-29 17:36:09 +01:00
committed by GitHub
parent 5165899e82
commit 722debe8f9
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ jobs:
strategy: strategy:
matrix: matrix:
specs: [browserify, integ, unit] specs: [browserify, integ, unit]
node: [16, 18, latest] node: [18, latest]
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3

View File

@@ -3,7 +3,7 @@
"version": "26.1.0", "version": "26.1.0",
"description": "Matrix Client-Server SDK for Javascript", "description": "Matrix Client-Server SDK for Javascript",
"engines": { "engines": {
"node": ">=16.0.0" "node": ">=18.0.0"
}, },
"scripts": { "scripts": {
"prepublishOnly": "yarn build", "prepublishOnly": "yarn build",