Skip to content

Commit 99e400e

Browse files
committed
Merge remote-tracking branch 'origin/master' into lazily-read-babel-config
2 parents 356656e + ac4d22b commit 99e400e

File tree

17 files changed

+32
-48
lines changed

17 files changed

+32
-48
lines changed

.github/workflows/nodejs.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Node CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
eai_scenario: [2.18, stable, beta, canary]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Use Node.js 8.x
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: 8.x
20+
- name: pick version and install
21+
run: ./scripts/change-ember-cli-version.sh
22+
env:
23+
EAI_SCENARIO: ${{ matrix.eai_scenario }}
24+
- name: test
25+
run: |
26+
yarn lint
27+
yarn test
28+
env:
29+
EAI_SCENARIO: ${{ matrix.eai_scenario }}
30+
31+
32+

.travis.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

packages/ember-auto-import/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
// --no-sandbox is needed when running Chrome inside a container
1515
process.env.TRAVIS ? '--no-sandbox' : null,
1616

17-
'--disable-gpu',
1817
'--headless',
1918
'--remote-debugging-port=0',
2019
'--window-size=1440,900'

packages/sample-addon/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
// --no-sandbox is needed when running Chrome inside a container
1515
process.env.TRAVIS ? '--no-sandbox' : null,
1616

17-
'--disable-gpu',
1817
'--headless',
1918
'--remote-debugging-port=0',
2019
'--window-size=1440,900'

packages/sample-babel7/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ module.exports = {
1313
// --no-sandbox is needed when running Chrome inside a container
1414
process.env.CI ? '--no-sandbox' : null,
1515
'--headless',
16-
'--disable-gpu',
1716
'--disable-dev-shm-usage',
1817
'--disable-software-rasterizer',
1918
'--mute-audio',

packages/sample-conflict/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
// --no-sandbox is needed when running Chrome inside a container
1515
process.env.TRAVIS ? '--no-sandbox' : null,
1616

17-
'--disable-gpu',
1817
'--headless',
1918
'--remote-debugging-port=0',
2019
'--window-size=1440,900'

packages/sample-direct/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
// --no-sandbox is needed when running Chrome inside a container
1515
process.env.TRAVIS ? '--no-sandbox' : null,
1616

17-
'--disable-gpu',
1817
'--headless',
1918
'--remote-debugging-port=0',
2019
'--window-size=1440,900'

packages/sample-double-indirect/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
// --no-sandbox is needed when running Chrome inside a container
1515
process.env.TRAVIS ? '--no-sandbox' : null,
1616

17-
'--disable-gpu',
1817
'--headless',
1918
'--remote-debugging-port=0',
2019
'--window-size=1440,900'

packages/sample-es-latest/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ module.exports = {
1313
// --no-sandbox is needed when running Chrome inside a container
1414
process.env.CI ? '--no-sandbox' : null,
1515
'--headless',
16-
'--disable-gpu',
1716
'--disable-dev-shm-usage',
1817
'--disable-software-rasterizer',
1918
'--mute-audio',

packages/sample-failure/testem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ module.exports = {
1414
// --no-sandbox is needed when running Chrome inside a container
1515
process.env.TRAVIS ? '--no-sandbox' : null,
1616

17-
'--disable-gpu',
1817
'--headless',
1918
'--remote-debugging-port=0',
2019
'--window-size=1440,900'

0 commit comments

Comments
 (0)