forked from tanguyantoine/react-native-music-control
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from swrlab/dev/v1.5.2
Update v1.5.2
- Loading branch information
Showing
14 changed files
with
2,405 additions
and
2,942 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,13 +1,34 @@ | ||
name: Build and Tests | ||
on: push | ||
name: Build and Test | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- dev/* | ||
- master | ||
|
||
env: | ||
NODE_VERSION: 18 | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
- name: 👀 Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: ☕️ Use Java 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
node-version: 12 | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn test | ||
java-version: "11" | ||
|
||
- name: 🏗 Setup NodeJS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: 📦 Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: 🧪 Run Tests | ||
run: yarn test |
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ local.properties | |
/ios/Pods/ | ||
*.xcuserstate | ||
xcuserdata | ||
.xcode.env.local | ||
build/ |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This `.xcode.env` file is versioned and is used to source the environment | ||
# used when running script phases inside Xcode. | ||
# To customize your local environment, you can create an `.xcode.env.local` | ||
# file that is not versioned. | ||
# NODE_BINARY variable contains the PATH to the node executable. | ||
|
||
# Customize the NODE_BINARY variable here. | ||
# For example, to use nvm with brew, add the following line | ||
. "$(brew --prefix nvm)/nvm.sh" --no-use | ||
export NODE_BINARY=$(command -v node) |
Oops, something went wrong.