We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560843f commit d33e06dCopy full SHA for d33e06d
.github/workflows/testcafe-testing-library.yml
@@ -1,4 +1,4 @@
1
-name: End-to-End Tests
+name: testcafe-testing-library
2
on:
3
push:
4
branches:
@@ -7,12 +7,13 @@ on:
7
8
jobs:
9
build:
10
- name: '${{ matrix.os }} node ${{ matrix.node }}'
+ name: 'node ${{ matrix.node }} ${{matrix.browser}} ${{ matrix.os }} '
11
runs-on: '${{ matrix.os }}'
12
strategy:
13
matrix:
14
os: [ubuntu-latest]
15
- node: [12]
+ node: [12, 10]
16
+ browser: [chrome, firefox]
17
steps:
18
- uses: actions/setup-node@v1
19
with:
@@ -23,7 +24,8 @@ jobs:
23
24
- name: Run TestCafe Tests
25
uses: DevExpress/testcafe-action@latest
26
- args: 'chrome tests/testcafe'
27
+ version: 1.6
28
+ args: '${{ matrix.browser}} tests/testcafe'
29
- run: npx semantic-release
30
env:
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments