-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'callstack:main' into main
- Loading branch information
Showing
51 changed files
with
28,334 additions
and
65,111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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 | ||
|
@@ -37,7 +41,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
|
||
- name: Pull npm dependencies | ||
uses: actions/[email protected].5 | ||
uses: actions/[email protected].7 | ||
with: | ||
path: ./package/node_modules | ||
key: ${{ hashFiles('./package/package.json') }} | ||
|
@@ -59,7 +63,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
|
||
- name: Pull npm dependencies | ||
uses: actions/[email protected].5 | ||
uses: actions/[email protected].7 | ||
with: | ||
path: ./package/node_modules | ||
key: ${{ hashFiles('./package/package.json') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.