Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "${{ env.NODE }}"

- name: Update npm to latest
run: npm install -g npm@latest

- name: Install npm dependencies
run: cd examples && yarn install && cd .. && yarn install
run: cd examples && npm install && cd .. && npm install --legacy-peer-deps

- name: Lint
run: yarn lint
run: npm run lint
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,19 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Update npm to latest
run: npm install -g npm@latest

- name: Install npm dependencies
run: cd examples && yarn install && cd .. && yarn install
run: cd examples && npm install && cd .. && npm install --legacy-peer-deps

- name: Run Jest tests
run: yarn test
run: npm test
if: "!(startsWith(matrix.os, 'ubuntu') && matrix.node == env.NODE)"
6 changes: 6 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Agent Guidelines

After making changes to the project, always run:

- `npm test` - Run unit tests
- `npm run functional` - Run functional tests
20 changes: 10 additions & 10 deletions examples/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Yoga
- react-native-safe-area-context (5.0.0):
- react-native-safe-area-context (5.7.0):
- DoubleConversion
- glog
- hermes-engine
Expand All @@ -1255,8 +1255,8 @@ PODS:
- React-featureflags
- React-graphics
- React-ImageManager
- react-native-safe-area-context/common (= 5.0.0)
- react-native-safe-area-context/fabric (= 5.0.0)
- react-native-safe-area-context/common (= 5.7.0)
- react-native-safe-area-context/fabric (= 5.7.0)
- React-NativeModulesApple
- React-RCTFabric
- React-rendererdebug
Expand All @@ -1265,7 +1265,7 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Yoga
- react-native-safe-area-context/common (5.0.0):
- react-native-safe-area-context/common (5.7.0):
- DoubleConversion
- glog
- hermes-engine
Expand All @@ -1286,7 +1286,7 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Yoga
- react-native-safe-area-context/fabric (5.0.0):
- react-native-safe-area-context/fabric (5.7.0):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1598,7 +1598,7 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Yoga
- RNScreens (4.5.0):
- RNScreens (4.3.0):
- DoubleConversion
- glog
- hermes-engine
Expand All @@ -1619,9 +1619,9 @@ PODS:
- ReactCodegen
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- RNScreens/common (= 4.5.0)
- RNScreens/common (= 4.3.0)
- Yoga
- RNScreens/common (4.5.0):
- RNScreens/common (4.3.0):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1894,7 +1894,7 @@ SPEC CHECKSUMS:
React-logger: 2736a90a3fdaed3dab1e2e9c5a5e9b3be00c287d
React-Mapbuffer: bd6a2ffbf401f11cfc8b5e8f38acab9fe117620c
React-microtasksnativemodule: 2fa3b8c7a876b84bd8166f11e07f101929a87f97
react-native-safe-area-context: f145b8906585d648f9f9c7dfa3885bac54f38fcc
react-native-safe-area-context: d5f6bb0129bec5631bfa433e792811360f66994f
React-nativeconfig: aeed6e2a8ac02b2df54476afcc7c663416c12bf7
React-NativeModulesApple: c0783e5e21c71aa2764ac33120abc96208466fa6
React-perflogger: 2991d4258277af250eb7a2705980ebb3ef9ba85e
Expand Down Expand Up @@ -1924,7 +1924,7 @@ SPEC CHECKSUMS:
ReactCommon: b8485556b596ef2f44f59bc586113bda138fb804
RNCMaskedView: 4c5ee1c8667d56077246cc6d1977f77393923560
RNGestureHandler: e1dcb274c17ca0680a04d7ff357e35e37c384185
RNScreens: 4c7d5710e955dcf72c14a546e29744f9e591370b
RNScreens: 06e1f09654d2da4ff95dee6621b2b13b033e9c5a
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
Yoga: 3deb2471faa9916c8a82dda2a22d3fba2620ad37

Expand Down
Loading