Skip to content

Commit

Permalink
tools: reuse __scripts__/generate-example.js in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
CAMOBAP committed Oct 3, 2024
1 parent 8a8ed28 commit 74c843c
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 84 deletions.
114 changes: 39 additions & 75 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,39 @@ on:
schedule:
- cron: '0 0 * * 0' # https://crontab.guru/every-week

env:
TEST_APP_DEPS: react-native-modal react-native-webview
TEST_APP_DEV_DEPS: typescript @babel/preset-env react-shallow-renderer
RN_BUNDLE_ARGS: --entry-file index.js --platform android --dev false --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- run: npm test
test-yarn:

test:
needs: build
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
outputs:
rn-version: ${{ steps.rn-version.outputs.value }}
concurrency:
group: '${{ github.workflow }}-${{ matrix.platform }}-${{ matrix.pm }}-${{ github.head_ref || github.ref_name }}'
cancel-in-progress: true
strategy:
fail-fast: false
max-parallel: 5
matrix:
os: [ ubuntu-latest ]
platform: [ android ]
pm: [ npm, yarn ]
bundle-args: [ '--bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res' ]
include:
- os: macos-latest
platform: ios
pm: npm
bundle-args: --bundle-output ios/main.jsbundle
- os: macos-latest
platform: ios
pm: yarn
bundle-args: --bundle-output ios/main.jsbundle
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -34,85 +50,32 @@ jobs:
with:
java-version: 17
distribution: adopt
- run: npx react-native init rnexample
- run: |
npm install -g react-native
npm run example -- --pm ${{ matrix.pm }}
working-directory: react-native-hcaptcha
- id: rn-version
working-directory: rnexample
working-directory: react-native-hcaptcha-example
run: |
RN_VERSION=$(cat package.json | jq ".dependencies.\"react-native\"" -r)
echo "value=${RN_VERSION}" >> $GITHUB_OUTPUT
- name: Run yarn add ...
working-directory: rnexample
run: |
yarn add @hcaptcha/react-native-hcaptcha@file:../react-native-hcaptcha
yarn add --dev ${{ env.TEST_APP_DEV_DEPS }}
yarn add ${{ env.TEST_APP_DEPS }}
cp ../react-native-hcaptcha/Example.App.js App.js
cp ../react-native-hcaptcha/Example.jest.config.js jest.config.js
- run: |
mkdir -p android/app/src/main/assets
mkdir -p android/app/src/main/res
yarn react-native bundle ${{ env.RN_BUNDLE_ARGS }}
working-directory: rnexample
- run: yarn react-native bundle --entry-file index.js --platform ${{ matrix.platform }} --dev false ${{ matrix.bundle-args }}
working-directory: react-native-hcaptcha-example
- run: cat package.json
working-directory: rnexample
working-directory: react-native-hcaptcha-example
- run: yarn test --config ./jest.config.js
working-directory: rnexample
working-directory: react-native-hcaptcha-example
- run: npx --yes check-peer-dependencies --yarn --runOnlyOnRootDependencies
working-directory: rnexample
test-npm:
needs: build
runs-on: ubuntu-latest
outputs:
rn-version: ${{ steps.rn-version.outputs.value }}
steps:
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- run: npx react-native init rnexample
- id: rn-version
working-directory: rnexample
run: |
RN_VERSION=$(cat package.json | jq ".dependencies.\"react-native\"" -r)
echo "value=${RN_VERSION}" >> $GITHUB_OUTPUT
- uses: actions/checkout@v4
with:
path: rnexample/react-native-hcaptcha
- name: Run npm install ...
working-directory: rnexample
run: |
npm i --save file:./react-native-hcaptcha
npm i --save --include=dev ${{ env.TEST_APP_DEV_DEPS }}
npm i --save ${{ env.TEST_APP_DEPS }}
cp ./react-native-hcaptcha/Example.App.js App.js
cp ./react-native-hcaptcha/Example.jest.config.js jest.config.js
- run: |
mkdir -p android/app/src/main/assets
mkdir -p android/app/src/main/res
npx react-native bundle ${{ env.RN_BUNDLE_ARGS }}
working-directory: rnexample
- run: cat package.json
working-directory: rnexample
- run: npm run test -- --config ./jest.config.js
working-directory: rnexample
- run: npx --yes check-peer-dependencies --npm --runOnlyOnRootDependencies
working-directory: rnexample
- run: |
echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=1024m" >> gradle.properties
./gradlew assemble
working-directory: rnexample/android
- uses: actions/upload-artifact@v4
with:
name: apks
path: rnexample/android/app/build/outputs/apk/release/app-release.apk
working-directory: react-native-hcaptcha-example

create-an-issue:
runs-on: ubuntu-latest
needs: [test-npm, test-yarn]
if: always() && github.event == 'schedule' && (needs.test-npm.result == 'failure' || needs.test-yarn.result == 'failure')
needs: test
if: always() && github.event == 'schedule' && needs.test.result == 'failure'
steps:
- uses: actions/checkout@v4
- run: |
RN_VERSION="${{ needs.test-npm.outputs.rn-version || needs.test-yarn.outputs.rn-version }}"
RN_VERSION="${{ needs.test.outputs.rn-version }}"
GHA_RUN_URL="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
echo "RN_VERSION=${RN_VERSION}" >> $GITHUB_ENV
echo "GHA_RUN_URL=${GHA_RUN_URL}" >> $GITHUB_ENV
Expand All @@ -123,9 +86,10 @@ jobs:
assignees: CAMOBAP
update_existing: true
filename: .github/examples-issue-template.md

release:
if: github.event_name == 'release'
needs: [test-npm, test-yarn]
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
29 changes: 22 additions & 7 deletions __scripts__/generate-example.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function parseArgs(args) {
cliName: 'react-native',
projectName: 'react_native_hcaptcha_example',
projectRelativeProjectPath: '../react-native-hcaptcha-example',
packageManager: 'yarn', // npm is broken https://github.com/facebook/react-native/issues/29977
packageManager: 'yarn',
projectTemplate: undefined,
frameworkVersion: undefined,
};
Expand All @@ -37,6 +37,10 @@ function parseArgs(args) {
options.projectName = value.replace(/[^a-zA-Z0-9]/g, '_');
options.projectRelativeProjectPath = path.join('..', value);
},
'--path': (value) => {
options.projectRelativeProjectPath = value;
},
'--pm': (value) => options.packageManager = value,
'-h': showHelp,
'--help': showHelp
};
Expand Down Expand Up @@ -108,17 +112,15 @@ function buildCreateCommand({ cliName, projectRelativeProjectPath, projectName,
return createCommand;
}

// Function to check if hCaptcha is linked
function checkHcaptchaLinked() {
//
return false;
return false; // https://stackoverflow.com/a/47403470/902217
}

// Main function that takes parsed arguments and runs the necessary setup
function main({ cliName, projectRelativeProjectPath, projectName, projectTemplate, packageManager, frameworkVersion }) {
cleanupEnvPathNode();

console.warn(`Warning! Example project will be generated in '${path.dirname(__dirname)}' directory`);
console.warn(`Warning! Example project will be generated in '${path.dirname(process.cwd())}' os='${platform()}'`);

// Build the command to initialize the project
const createCommand = buildCreateCommand({ cliName, projectRelativeProjectPath, projectName, projectTemplate, packageManager, frameworkVersion });
Expand All @@ -134,7 +136,8 @@ function main({ cliName, projectRelativeProjectPath, projectName, projectTemplat
fs.readdirSync(projectPath)
.filter(file => file.startsWith('App.'))
.forEach(file => fs.unlinkSync(path.join(projectPath, file)));
fs.copyFileSync('Example.App.js', `${projectPath}/App.js`);
fs.copyFileSync('Example.App.js', path.join(projectPath, 'App.js'));
fs.copyFileSync('Example.jest.config.js', path.join(projectPath, 'jest.config.js'));

// Install dependencies
const isHcaptchaLinked = checkHcaptchaLinked();
Expand All @@ -147,7 +150,10 @@ function main({ cliName, projectRelativeProjectPath, projectName, projectTemplat
execSync(`yarn add ${mainPackagePath}`, packageManagerOptions);
execSync(`yarn add ${peerPackages}`, packageManagerOptions);
} else {
execSync(`npm i --save ${mainPackagePath}`, packageManagerOptions);
// https://github.com/facebook/react-native/issues/29977 - react-native doesn't work with symlinks so `cp` instead
// fs.symlinkSync(mainPackagePath, path.join(projectPath, 'react-native-hcaptcha'), 'dir');
execSync(`cp -r ${mainPackagePath} ${projectPath}`);
execSync(`npm i --save ./react-native-hcaptcha`, packageManagerOptions);
execSync(`npm i --save ${peerPackages}`, packageManagerOptions);
}

Expand All @@ -162,6 +168,15 @@ function main({ cliName, projectRelativeProjectPath, projectName, projectTemplat
execSync('bundle exec pod install', podOptions);
}

// Android
const gradleOptions = {
stdio: 'inherit', cwd: path.join(projectPath, 'android'),
env: { ...process.env, GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx4096m -XX:MaxMetaspaceSize=1024m"' }
};
execSync('./gradlew assemble', gradleOptions);

['assets', 'res'].map(dir => fs.mkdirSync(path.join(projectPath, 'android/app/src/main', dir), { recursive: true }));

console.log('Setup complete.');
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"test": "jest",
"example": "node __scripts__/generate-example.js --name react-native-hcaptcha-example"
"example": "node __scripts__/generate-example.js"
},
"jest": {
"preset": "react-native",
Expand Down Expand Up @@ -61,4 +61,4 @@
"babel-jest": "^27.2.2",
"metro-react-native-babel-preset": "^0.77.0"
}
}
}

0 comments on commit 74c843c

Please sign in to comment.