Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/@bartlomiejbloniarz/modify-sets'…
Browse files Browse the repository at this point in the history
… into @kacperkapusciak/testing-screen-transitions-with-SETs
  • Loading branch information
kacperkapusciak committed Feb 8, 2024
2 parents 9e2c337 + 2ccf49e commit 05c25a5
Show file tree
Hide file tree
Showing 182 changed files with 2,954 additions and 3,867 deletions.
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.github/CODEOWNERS @kmagiera @piaskowyk @tomekzaw
/.github/workflows @kmagiera @piaskowyk @tomekzaw
2 changes: 1 addition & 1 deletion .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java 11
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-next-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Reanimated node_modules
run: yarn install --frozen-lockfile
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/build-npm-package-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Clear annotations
run: scripts/clear-annotations.sh

- name: Set up JDK 11
if: ${{ inputs.ref == 'Reanimated2' }}
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'

- name: Install NDK
if: ${{ inputs.ref == 'Reanimated2' }}
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
Expand Down Expand Up @@ -83,7 +85,7 @@ jobs:
- run: echo "PACKAGE_NAME=$(ls -l | egrep -o "react-native-reanimated-(.*)(=?\.tgz)")" >> $GITHUB_ENV

- name: Upload npm package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE_NAME }}
path: '*.tgz'
Expand All @@ -94,7 +96,7 @@ jobs:

- name: Upload Android build folder
if: ${{ inputs.upload_binaries }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: android-build-output
path: android-build-output.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-v8-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'reanimated_repo'
- name: Create React Native app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-TS-react-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'yarn'
- name: Clear annotations
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-expo-dev-client-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out reanimated repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'reanimated_repo'
- name: Create Expo app
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out reanimated repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: 'reanimated_repo'
- name: Create Expo app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-when-stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'software-mansion-labs/swmansion-bot'
ref: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detect-broken-urls-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install dependencies
run: yarn add node-fetch@2
- name: Validate urls
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@ jobs:
WORKING_DIRECTORY: docs
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'yarn'
- name: Clear annotations
run: scripts/clear-annotations.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Reanimated node_modules from cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Reanimated node_modules from cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate awesome content
run: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/needs-more-info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout Actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'software-mansion-labs/swmansion-bot'
ref: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/needs-repro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout Actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'software-mansion-labs/swmansion-bot'
ref: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout Actions
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'software-mansion-labs/swmansion-bot'
ref: stable
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/static-example-apps-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ jobs:
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'yarn'
- name: Clear annotations
run: scripts/clear-annotations.sh
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/static-root-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ jobs:
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'yarn'
- name: Clear annotations
run: scripts/clear-annotations.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tvos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Reanimated node_modules from cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python-version: [3.7]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Lint iOS
run: yarn lint:ios
7 changes: 3 additions & 4 deletions .github/workflows/validate-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ jobs:
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'yarn'
- name: Clear annotations
run: scripts/clear-annotations.sh
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/validate-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'yarn'
- name: Clear annotations
run: scripts/clear-annotations.sh
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ apple/Pods/
lib/
react-native-reanimated-tests.js

# eclipse
*.settings**
# Eclipse
.settings/

# plugin
plugin/build/plugin.js.map
Expand Down
Loading

0 comments on commit 05c25a5

Please sign in to comment.