Skip to content

Commit d33e06d

Browse files
authored
fix: drop support for node 8 (#106)
BREAKING CHANGE: Drop support for node 8
1 parent 560843f commit d33e06d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/testcafe-testing-library.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: End-to-End Tests
1+
name: testcafe-testing-library
22
on:
33
push:
44
branches:
@@ -7,12 +7,13 @@ on:
77

88
jobs:
99
build:
10-
name: '${{ matrix.os }} node ${{ matrix.node }}'
10+
name: 'node ${{ matrix.node }} ${{matrix.browser}} ${{ matrix.os }} '
1111
runs-on: '${{ matrix.os }}'
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest]
15-
node: [12]
15+
node: [12, 10]
16+
browser: [chrome, firefox]
1617
steps:
1718
- uses: actions/setup-node@v1
1819
with:
@@ -23,7 +24,8 @@ jobs:
2324
- name: Run TestCafe Tests
2425
uses: DevExpress/testcafe-action@latest
2526
with:
26-
args: 'chrome tests/testcafe'
27+
version: 1.6
28+
args: '${{ matrix.browser}} tests/testcafe'
2729
- run: npx semantic-release
2830
env:
2931
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)