File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,12 @@ jobs:
11
11
timeout-minutes : 60
12
12
runs-on : ${{ matrix.os }}
13
13
strategy :
14
- fail-fast : false
14
+ # fail-fast: false
15
15
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']
18
20
steps :
19
21
- uses : actions/checkout@v2
20
22
- name : Use Node.js ${{ matrix.node-version }}
@@ -27,11 +29,15 @@ jobs:
27
29
run : npm run test:unit -- -ci --runInBand
28
30
- name : Integration Tests (Jest)
29
31
run : npm run test:integration -- -ci --runInBand
32
+ - name : Install Playwright
33
+ run : npx playwright install --with-deps
30
34
- name : E2E Tests (Playwright)
31
35
run : npm run test:e2e
32
36
- name : Upload artifacts (diff output)
33
37
uses : actions/upload-artifact@v2
34
- if : failure ()
38
+ if : always ()
35
39
with :
36
40
name : ${{ matrix.os }}-${{ matrix.node-version }}-diff-output
37
- path : _playwright-results
41
+ path : |
42
+ _playwright-results/
43
+ _playwright-report/
You can’t perform that action at this time.
0 commit comments