Skip to content

Commit f7c93c4

Browse files
Update test.yml
1 parent ac7652f commit f7c93c4

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ jobs:
1111
timeout-minutes: 60
1212
runs-on: ${{ matrix.os }}
1313
strategy:
14-
fail-fast: false
14+
# fail-fast: false
1515
matrix:
16-
node-version: [14.x, 16.x]
17-
os: ['macos-latest', 'ubuntu-latest', 'windows-latest']
16+
# node-version: [14.x, 16.x]
17+
node-version: [16.x]
18+
# os: ['macos-latest', 'ubuntu-latest', 'windows-latest']
19+
os: ['ubuntu-latest']
1820
steps:
1921
- uses: actions/checkout@v2
2022
- name: Use Node.js ${{ matrix.node-version }}
@@ -27,11 +29,15 @@ jobs:
2729
run: npm run test:unit -- -ci --runInBand
2830
- name: Integration Tests (Jest)
2931
run: npm run test:integration -- -ci --runInBand
32+
- name: Install Playwright
33+
run: npx playwright install --with-deps
3034
- name: E2E Tests (Playwright)
3135
run: npm run test:e2e
3236
- name: Upload artifacts (diff output)
3337
uses: actions/upload-artifact@v2
34-
if: failure()
38+
if: always()
3539
with:
3640
name: ${{ matrix.os }}-${{ matrix.node-version }}-diff-output
37-
path: _playwright-results
41+
path: |
42+
_playwright-results/
43+
_playwright-report/

0 commit comments

Comments
 (0)