-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated iOS workflow Updated React Native Cleaned up some code
- Loading branch information
Alex Risch
authored and
Alex Risch
committed
Jan 31, 2024
1 parent
57c3788
commit e538eab
Showing
3 changed files
with
12 additions
and
3 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,15 +1,20 @@ | ||
name: Android Tests | ||
on: | ||
pull_request: | ||
# paths: | ||
# - 'android/**' | ||
paths: | ||
- 'android/**' | ||
- 'package.json' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'zulu' | ||
- uses: actions/setup-node@v3 | ||
- run: yarn | ||
- run: cd android && ./gradlew assembleDebug |
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
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,3 +1,6 @@ | ||
const esModules = ['@react-native', 'react-native', 'i18n-js'].join('|'); | ||
|
||
module.exports = { | ||
preset: 'react-native', | ||
transformIgnorePatterns: [`node_modules/(?!${esModules})`], | ||
}; |