Skip to content

Commit 0375141

Browse files
committed
what test work and what works
1 parent c3e45ec commit 0375141

1 file changed

Lines changed: 41 additions & 41 deletions

File tree

.github/workflows/ci.yml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -37,59 +37,59 @@ jobs:
3737
- name: Remove test-packages
3838
run: |
3939
rm -rf test-packages
40-
rm yarn.lock
41-
- name: Install NPM version 4
42-
run: |
43-
npm config set spin false
44-
npm install -g npm@4
4540
- name: Yarn Install
4641
working-directory: ./packages/ember-cli-fastboot
4742
run: |
4843
yarn install --ignore-engines --frozen-lockfile
44+
- name: Install NPM version 4
45+
run: |
46+
npm config set spin false
47+
npm install -g npm@4
4948
- name: Run Mocha Tests
5049
working-directory: ./packages/ember-cli-fastboot
5150
run: |
5251
yarn test:mocha
5352
5453
55-
test-ember:
56-
name: Ember Tests
57-
runs-on: ${{ matrix.os }}
54+
# test-ember:
55+
# name: Ember Tests
56+
# runs-on: ${{ matrix.os }}
5857

59-
strategy:
60-
matrix:
61-
node-version: [12.x, 10.x]
62-
os: [ubuntu-latest, windows-latest]
58+
# strategy:
59+
# matrix:
60+
# node-version: [12.x, 10.x]
61+
# os: [ubuntu-latest, windows-latest]
6362

64-
steps:
65-
- name: Checkout Code
66-
uses: actions/checkout@v2
67-
- name: Use Node.js ${{ matrix.node-version }}
68-
uses: actions/setup-node@v1
69-
with:
70-
node-version: ${{ matrix.node-version }}
71-
- name: Yarn Install
72-
run: yarn install --ignore-engines --frozen-lockfile
73-
- name: Run Tests
74-
run: yarn workspace ember-cli-fastboot test:ember
63+
# steps:
64+
# - name: Checkout Code
65+
# uses: actions/checkout@v2
66+
# - name: Use Node.js ${{ matrix.node-version }}
67+
# uses: actions/setup-node@v1
68+
# with:
69+
# node-version: ${{ matrix.node-version }}
70+
# - name: Yarn Install
71+
# run: yarn install --ignore-engines --frozen-lockfile
72+
# - name: Run Tests
73+
# run: yarn workspace ember-cli-fastboot test:ember
7574

76-
test-packages:
77-
name: Test Packages
78-
runs-on: ${{ matrix.os }}
7975

80-
strategy:
81-
matrix:
82-
node-version: [12.x, 10.x]
83-
os: [ubuntu-latest, windows-latest]
76+
# test-packages:
77+
# name: Test Packages
78+
# runs-on: ${{ matrix.os }}
8479

85-
steps:
86-
- name: Checkout Code
87-
uses: actions/checkout@v2
88-
- name: Use Node.js ${{ matrix.node-version }}
89-
uses: actions/setup-node@v1
90-
with:
91-
node-version: ${{ matrix.node-version }}
92-
- name: Yarn Install
93-
run: yarn install --ignore-engines --frozen-lockfile
94-
- name: Basic App
95-
run: yarn workspace basic-app test:mocha
80+
# strategy:
81+
# matrix:
82+
# node-version: [12.x, 10.x]
83+
# os: [ubuntu-latest, windows-latest]
84+
85+
# steps:
86+
# - name: Checkout Code
87+
# uses: actions/checkout@v2
88+
# - name: Use Node.js ${{ matrix.node-version }}
89+
# uses: actions/setup-node@v1
90+
# with:
91+
# node-version: ${{ matrix.node-version }}
92+
# - name: Yarn Install
93+
# run: yarn install --ignore-engines --frozen-lockfile
94+
# - name: Basic App
95+
# run: yarn workspace basic-app test:mocha

0 commit comments

Comments
 (0)