Skip to content

Commit 24711b6

Browse files
Robert Jacksonmansona
authored andcommitted
Exclude Node 14 + macOS CI run.
1 parent 413427a commit 24711b6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@ jobs:
3535
matrix:
3636
os: ['ubuntu', 'windows', 'macOS']
3737
node: ['6', '8', '10', '12', '14']
38+
exclude:
39+
# excludes node 14 on macOS, this is because
40+
# ember-cli (until ~ 3.12) calls
41+
# `fs.writeFileSync('./tmp/.metadata_never_index)` on macOS platforms
42+
# to instruct spotlight to avoid indexing the local tmp folder
43+
# unfortunately, ember-cli does not pass a value for second arg (the
44+
# content to write) and Node 14 added an assertion
45+
#
46+
# TODO: delete this when we have dropped Node 6 and can update
47+
# ember-cli to a version that doesn't do this
48+
- os: 'macOS'
49+
node: '14'
3850

3951
steps:
4052
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)