Skip to content

Commit a60a596

Browse files
Merge branch 'callstack:main' into main
2 parents 6c21706 + 30c4b07 commit a60a596

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+28334
-65111
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,38 @@
11
---
22
name: 🐛 Report a bug
3-
about: Report a reproducible or regression bug in React Native Slider.'
3+
about: Report a bug or regression in React Native Slider.
44
labels: 'bug report'
55
---
66

77
## Environment
88

9-
<!-- Run `react-native info` in your terminal and paste its contents here. -->
9+
<!--
10+
IMPORTANT
11+
Provide us with all the below information. We need it to make sure we understand the issue you experience and to set up the environment to actually work on the fix.
12+
13+
MAKE SURE TO USE THE LATEST VERSION OF SLIDER
14+
-->
15+
16+
* react-native info output:
17+
```
18+
// react-native info
19+
```
20+
21+
* are you using the new architecture?
22+
23+
* which version of react & react-native are you using?
24+
1025

1126
## Description
1227

1328
<!--
14-
Describe your issue in detail. Include screenshots if needed. If this is a regression, let us know.
29+
Describe your issue in detail. Include screenshots or recordings.
1530
-->
1631

1732

1833
## Reproducible Demo
1934

2035
<!--
21-
Let us know how to reproduce the issue. Include a code sample or share a project that reproduces the issue.
22-
Please follow the guidelines for providing a minimal example: https://stackoverflow.com/help/mcve.
36+
Let us know how to reproduce the issue. Include a code sample and share a project that reproduces the issue.
37+
PLEASE follow the guidelines for providing a minimal example: https://stackoverflow.com/help/mcve.
2338
-->

.github/workflows/ReactNativeSlider-CI.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,19 @@ jobs:
1717
- name: Checkout repository
1818
uses: actions/checkout@v3
1919

20-
- name: Restore all the packages
21-
run: npm install
22-
23-
- name: Cache
24-
uses: actions/cache@v3.0.5
20+
- name: Cache node modules
21+
id: cache-package-npm
22+
uses: actions/[email protected]
23+
env:
24+
cache-name: cached-ci-npm-deps
2525
with:
2626
path: ./package/node_modules
2727
key: ${{ hashFiles('./package/package.json') }}
2828

29+
- name: Install required dependencies on cache miss (npm)
30+
if: steps.cache-package-npm.outputs.cache-hit != 'true'
31+
run: |
32+
npm install
2933
3034
verify-package-sources:
3135
name: Lint the sources
@@ -37,7 +41,7 @@ jobs:
3741
uses: actions/checkout@v3
3842

3943
- name: Pull npm dependencies
40-
uses: actions/[email protected].5
44+
uses: actions/[email protected].7
4145
with:
4246
path: ./package/node_modules
4347
key: ${{ hashFiles('./package/package.json') }}
@@ -59,7 +63,7 @@ jobs:
5963
uses: actions/checkout@v3
6064

6165
- name: Pull npm dependencies
62-
uses: actions/[email protected].5
66+
uses: actions/[email protected].7
6367
with:
6468
path: ./package/node_modules
6569
key: ${{ hashFiles('./package/package.json') }}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ To use this library you need to ensure you are using the correct version of Reac
7373

7474
| `@react-native-community/slider` version | Required React Native Version |
7575
| ---------------------------------------- | ----------------------------- |
76+
| `4.3.0` | `>=0.64` |
7677
| `4.x.x` | `>=0.60`; `>=0.62` (on Windows); |
7778
| `3.1.x` | `>=0.60` |
7879
| `2.x.x` | `>= 0.60` |

0 commit comments

Comments
 (0)