Skip to content

Commit b2520fe

Browse files
authored
Merge pull request #1017 from typed-ember/v4-drop-node-8
[v4] drop support for Node 8
2 parents d0bda5b + 89e066a commit b2520fe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Node
4141
uses: actions/setup-node@v1
4242
with:
43-
node-version: '^8.12'
43+
node-version: '^10'
4444
# https://github.com/expo/expo-github-action/issues/20#issuecomment-541676895
4545
- name: Raise Watched File Limit
4646
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
@@ -64,7 +64,7 @@ jobs:
6464
- name: Install Node
6565
uses: actions/setup-node@v1
6666
with:
67-
node-version: '^8.12'
67+
node-version: '^10'
6868
- name: Install Dependencies
6969
run: yarn install --frozen-lockfile
7070
- name: Prepare CI Environment
@@ -84,7 +84,7 @@ jobs:
8484
- name: Install Node
8585
uses: actions/setup-node@v1
8686
with:
87-
node-version: '^8.12'
87+
node-version: '^10'
8888
- name: Raise Watched File Limit
8989
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
9090
- name: Install Dependencies
@@ -113,7 +113,7 @@ jobs:
113113
- name: Install Node
114114
uses: actions/setup-node@v1
115115
with:
116-
node-version: '^8.12'
116+
node-version: '^10'
117117
- name: Raise Watched File Limit
118118
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
119119
- name: Install Dependencies

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"hawk": "7"
136136
},
137137
"engines": {
138-
"node": "8.* || >= 10.*"
138+
"node": "10.* || >= 12.*"
139139
},
140140
"ember-addon": {
141141
"configPath": "tests/dummy/config",

0 commit comments

Comments
 (0)