mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
Bump minimum node version to 16. (#316)
* Bump minimum node version to 16. We already made the mistake of using features from 16 without realising Previously: https://github.com/matrix-org/mjolnir/pull/192 * Make sure CI uses specific version of node and we also lint. https://github.com/matrix-org/pipelines/blob/master/mjolnir/pipeline.yml#L13
This commit is contained in:
parent
65f52fef3a
commit
84ffb36494
29
.github/workflows/mjolnir.yml
vendored
29
.github/workflows/mjolnir.yml
vendored
@ -11,11 +11,38 @@ env:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build & Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Specifically use node 16 like in the readme.
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
- run: yarn install
|
||||
- run: yarn build
|
||||
- run: yarn lint
|
||||
unit:
|
||||
name: Unit tests
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Specifically use node 16 like in the readme.
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
- run: yarn install
|
||||
- run: yarn test
|
||||
integration:
|
||||
name: Integration tests
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
- name: install mx-tester
|
||||
run: cargo install mx-tester
|
||||
- name: Setup image
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM node:14-alpine
|
||||
FROM node:16-alpine
|
||||
COPY . /tmp/src
|
||||
RUN cd /tmp/src \
|
||||
&& yarn install \
|
||||
|
@ -1,4 +1,4 @@
|
||||
To build mjolnir, you have to have installed `yarn` 1.x and Node 14.
|
||||
To build mjolnir, you have to have installed `yarn` 1.x and Node 16.
|
||||
|
||||
```bash
|
||||
git clone https://github.com/matrix-org/mjolnir.git
|
||||
|
@ -48,6 +48,6 @@
|
||||
"shell-quote": "^1.7.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
"node": ">=16.0.0"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user