From 70975e0231476d04c64c08433d0813aa60d9c07f Mon Sep 17 00:00:00 2001 From: Will Hunt <will@half-shot.uk> Date: Fri, 6 Nov 2020 17:03:24 +0000 Subject: [PATCH] Move to Node 12,14 --- .travis.yml | 10 +++++----- README.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0b07d9d..86f8702 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,14 +10,14 @@ jobs: include: - stage: lint script: yarn lint - node_js: "12" + node_js: "14" - stage: unit tests - script: yart test - node_js: "10" - - node_js: "12" + script: yarn test + node_js: "12" + - node_js: "14" - stage: coverage script: yarn coverage - node_js: "12" + node_js: "14" # NOTE: This is unused atm # notifications: diff --git a/README.md b/README.md index b98ee36..940b88f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Please also be aware that this is an unoffical project worked on in our spare ti The bridge has been tested against the [Synapse](https://github.com/matrix-org/synapse) homeserver, although any homeserver that implements the [AS API](https://matrix.org/docs/spec/application_service/r0.1.0.html) should work with this bridge. -The bridge supports any version of Node.js >= v10.X, including all [current releases](https://nodejs.org/en/about/releases/). +The bridge supports any version of Node.js >= v12.X, including all [current releases](https://nodejs.org/en/about/releases/). ### Setup the bridge -- GitLab