We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f764042 commit 3abadeaCopy full SHA for 3abadea
.github/workflows/build.yml
@@ -312,6 +312,13 @@ jobs:
312
uses: actions/checkout@v2
313
- name: Set up Node
314
uses: actions/setup-node@v1
315
+ with:
316
+ # The only danger with Ember in terms of Node versions is that the build tool, ember-cli, won't work if Node
317
+ # is too old. Since Oct 2019, Node 10 has been the oldest version supported by ember-cli, so test against
318
+ # that. If it passes, newer versions of Node should also be fine. This saves us from having to run the Ember
319
+ # tests in our Node matrix above.
320
+ node-version: '12'
321
+ fetch-depth: 0
322
- name: Check dependency cache
323
uses: actions/cache@v2
324
with:
0 commit comments