Skip to content

Commit 5f899b3

Browse files
authored
[MOO-1532] Fix Native Widgets pipeline (#167)
2 parents 7cf1d85 + 1d9c405 commit 5f899b3

57 files changed

Lines changed: 8 additions & 3 deletions

File tree

Some content is hidden

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

.github/workflows/NativePipeline.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,16 @@ jobs:
2323
- name: "Determine scope"
2424
id: scope
2525
run: |
26-
if [ ${{ github.event_name }} == 'pull_request' ]; then
26+
echo "Event name: '${{ github.event_name }}'"
27+
if [ "${{ github.event_name }}" == "pull_request" ]; then
2728
echo "scope=--since --include '*-native'" >> $GITHUB_OUTPUT
28-
elif [ {{ github.event_name }} != 'pull_request' ]; then
29+
else
2930
echo "scope=--include '*-native'" >> $GITHUB_OUTPUT
3031
fi
32+
33+
- name: "Debug Scope Output"
34+
run: |
35+
echo "Scope is: ${{ steps.scope.outputs.scope }}"
3136
mendix-version:
3237
runs-on: ubuntu-22.04
3338
steps:

configs/e2e/native_dependencies.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"react-native-material-menu": "1.2.0",
77
"react-native-linear-gradient": "2.5.6",
88
"@react-native-community/netinfo": "5.9.7",
9-
"@react-native-community/art": "1.2.0",
9+
"react-native-svg": "12.1.0",
1010
"react-native-system-navigation-bar": "2.6.3",
1111
"react-native-video": "5.2.1",
1212
"@react-native-community/async-storage": "1.12.1",

0 commit comments

Comments
 (0)