Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/testcafe-testing-library.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: End-to-End Tests
name: testcafe-testing-library
on:
push:
branches:
Expand All @@ -7,12 +7,13 @@ on:

jobs:
build:
name: '${{ matrix.os }} node ${{ matrix.node }}'
name: 'node ${{ matrix.node }} ${{matrix.browser}} ${{ matrix.os }} '
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os: [ubuntu-latest]
node: [12]
node: [12, 10]
browser: [chrome, firefox]
steps:
- uses: actions/setup-node@v1
with:
Expand All @@ -23,7 +24,8 @@ jobs:
- name: Run TestCafe Tests
uses: DevExpress/testcafe-action@latest
with:
args: 'chrome tests/testcafe'
version: 1.6
args: '${{ matrix.browser}} tests/testcafe'
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down