We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd17c8 commit bc89b0aCopy full SHA for bc89b0a
1 file changed
.github/workflows/ci.yml
@@ -43,6 +43,7 @@ jobs:
43
- name: Run Mocha Tests
44
run: yarn workspace ember-cli-fastboot test:mocha
45
46
+
47
test-ember:
48
name: Ember Tests
49
runs-on: ${{ matrix.os }}
@@ -64,3 +65,23 @@ jobs:
64
65
- name: Run Tests
66
run: yarn workspace ember-cli-fastboot test:ember
67
68
+ test-packages:
69
+ name: Test Packages
70
+ runs-on: ${{ matrix.os }}
71
72
+ strategy:
73
+ matrix:
74
+ node-version: [12.x, 10.x]
75
+ os: [ubuntu-latest, windows-latest]
76
77
+ steps:
78
+ - name: Checkout Code
79
+ uses: actions/checkout@v2
80
+ - name: Use Node.js ${{ matrix.node-version }}
81
+ uses: actions/setup-node@v1
82
+ with:
83
+ node-version: ${{ matrix.node-version }}
84
+ - name: Yarn Install
85
+ run: yarn install --ignore-engines
86
+ - name: Basic App
87
+ run: yarn workspace basic-app test:mocha
0 commit comments