Skip to content

Commit b2b339a

Browse files
authored
Drop Node 10.x and add 16.x to CI (#557)
* Drop Node 10.x and add 16.x to CI * Bump minimum version on package.json and README
1 parent c723a5d commit b2b339a

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

.github/workflows/fluent-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-dedent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-dom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-gecko.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-langneg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-react.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-sequence.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

.github/workflows/fluent-syntax.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10.x, 12.x, 14.x]
12+
node: [12.x, 14.x, 16.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{matrix.node}}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Hacking on `fluent.js` is easy! To quickly get started clone the repo:
7474
$ git clone https://github.com/projectfluent/fluent.js.git
7575
$ cd fluent.js
7676

77-
You'll need at least Node.js 10 LTS. Older versions are not supported.
77+
You'll need at least Node.js 12 LTS. Older versions are not supported.
7878

7979
Install the build tools used by all packages (Babel, Rollup, Mocha etc.):
8080

fluent-bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"parser"
4040
],
4141
"engines": {
42-
"node": ">=10.0.0"
42+
"node": ">=12.0.0"
4343
},
4444
"devDependencies": {
4545
"@fluent/dedent": "^0.3.0",

0 commit comments

Comments
 (0)