Skip to content

Commit

Permalink
Merge branch 'callstack:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Utkarsh-vishnoi authored Nov 11, 2023
2 parents 6c21706 + 30c4b07 commit a60a596
Show file tree
Hide file tree
Showing 51 changed files with 28,334 additions and 65,111 deletions.
25 changes: 20 additions & 5 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
---
name: 🐛 Report a bug
about: Report a reproducible or regression bug in React Native Slider.'
about: Report a bug or regression in React Native Slider.
labels: 'bug report'
---

## Environment

<!-- Run `react-native info` in your terminal and paste its contents here. -->
<!--
IMPORTANT
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.
MAKE SURE TO USE THE LATEST VERSION OF SLIDER
-->

* react-native info output:
```
// react-native info
```

* are you using the new architecture?

* which version of react & react-native are you using?


## Description

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


## Reproducible Demo

<!--
Let us know how to reproduce the issue. Include a code sample or share a project that reproduces the issue.
Please follow the guidelines for providing a minimal example: https://stackoverflow.com/help/mcve.
Let us know how to reproduce the issue. Include a code sample and share a project that reproduces the issue.
PLEASE follow the guidelines for providing a minimal example: https://stackoverflow.com/help/mcve.
-->
18 changes: 11 additions & 7 deletions .github/workflows/ReactNativeSlider-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,19 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Restore all the packages
run: npm install

- name: Cache
uses: actions/cache@v3.0.5
- name: Cache node modules
id: cache-package-npm
uses: actions/cache@v3.0.7
env:
cache-name: cached-ci-npm-deps
with:
path: ./package/node_modules
key: ${{ hashFiles('./package/package.json') }}

- name: Install required dependencies on cache miss (npm)
if: steps.cache-package-npm.outputs.cache-hit != 'true'
run: |
npm install
verify-package-sources:
name: Lint the sources
Expand All @@ -37,7 +41,7 @@ jobs:
uses: actions/checkout@v3

- name: Pull npm dependencies
uses: actions/cache@v3.0.5
uses: actions/cache@v3.0.7
with:
path: ./package/node_modules
key: ${{ hashFiles('./package/package.json') }}
Expand All @@ -59,7 +63,7 @@ jobs:
uses: actions/checkout@v3

- name: Pull npm dependencies
uses: actions/cache@v3.0.5
uses: actions/cache@v3.0.7
with:
path: ./package/node_modules
key: ${{ hashFiles('./package/package.json') }}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ To use this library you need to ensure you are using the correct version of Reac

| `@react-native-community/slider` version | Required React Native Version |
| ---------------------------------------- | ----------------------------- |
| `4.3.0` | `>=0.64` |
| `4.x.x` | `>=0.60`; `>=0.62` (on Windows); |
| `3.1.x` | `>=0.60` |
| `2.x.x` | `>= 0.60` |
Expand Down
Loading

0 comments on commit a60a596

Please sign in to comment.