Skip to content

Commit d6f2076

Browse files
committed
remove node 8 from tests, because EOL
- note that the module itself is still working with node 8
1 parent 6834d1f commit d6f2076

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/test-and-release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
node-version: [8.x, 10.x, 12.x]
21+
node-version: [10.x, 12.x, 14.x]
2222
os: [ubuntu-latest, windows-latest, macos-latest]
23-
exclude:
24-
# Don't test Node.js 8 on Windows. npm is weird here
25-
- os: windows-latest
26-
node-version: 8.x
2723
steps:
2824
- uses: actions/checkout@v1
2925
- name: Use Node.js ${{ matrix.node-version }}

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "bring-shopping",
33
"version": "1.3.0",
4+
"engines": {
5+
"node": ">=8.0.0"
6+
},
47
"description": "Nodejs wrapper for the Bring! API",
58
"author": {
69
"name": "Moritz Heusinger",

0 commit comments

Comments
 (0)