Skip to content

Commit 3abadea

Browse files
authored
Use Node 12 in Playwright job runner.
1 parent f764042 commit 3abadea

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,13 @@ jobs:
312312
uses: actions/checkout@v2
313313
- name: Set up Node
314314
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
315322
- name: Check dependency cache
316323
uses: actions/cache@v2
317324
with:

0 commit comments

Comments
 (0)