Skip to content

Commit 3be9f3b

Browse files
chore: disable React 17 tests on CI as they didn't work anyway (#1504)
1 parent 32dca59 commit 3be9f3b

File tree

2 files changed

+3
-17
lines changed

2 files changed

+3
-17
lines changed

.github/workflows/main.yml

+2-16
Original file line numberDiff line numberDiff line change
@@ -61,34 +61,20 @@ jobs:
6161
test:
6262
needs: [install-cache-deps]
6363
runs-on: ubuntu-latest
64-
name: Test React 18
64+
name: Test
6565
steps:
6666
- name: Checkout
6767
uses: actions/checkout@v3
6868

6969
- name: Setup Node.js and deps
7070
uses: ./.github/actions/setup-deps
7171

72-
- name: Test React 18
72+
- name: Test
7373
run: yarn test:ci
7474

7575
- name: Upload coverage to Codecov
7676
uses: codecov/codecov-action@v3
7777

78-
test-react-17:
79-
needs: [install-cache-deps]
80-
runs-on: ubuntu-latest
81-
name: Test React 17
82-
steps:
83-
- name: Checkout
84-
uses: actions/checkout@v3
85-
86-
- name: Setup Node.js and deps
87-
uses: ./.github/actions/setup-deps
88-
89-
- name: Test React 17
90-
run: yarn test:ci:react:17
91-
9278
test-website:
9379
runs-on: ubuntu-latest
9480
name: Test Website

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"clean": "del build",
7979
"test": "jest",
8080
"test:ci": "jest --maxWorkers=2 --collectCoverage=true --coverage-provider=v8",
81-
"test:ci:react:17": "scripts/test_react_17",
81+
"test:react-17": "scripts/test_react_17",
8282
"typecheck": "tsc",
8383
"flow": "flow",
8484
"copy-flowtypes": "cp typings/index.flow.js build",

0 commit comments

Comments
 (0)