-
-
Couldn't load subscription status.
- Fork 24
feat: Support descendant #140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or 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
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
Co-authored-by: SrinivasanTarget <[email protected]>
|
🎉 This PR is included in version 1.4.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the CI/CD workflows and configuration for both GitHub Actions and CircleCI, focusing on modernizing Node.js versions, improving dependency management, simplifying test execution, and cleaning up legacy or redundant jobs. It also introduces a new workflow for integration testing in the
flutter-finderrepository. The most important changes are summarized below.CI Environment Updates:
Dependency Management Improvements:
npm installandnpm ciwithnpm install --no-package-lockin multiple workflows to avoid generating or using a package lock file, which can help prevent dependency conflicts in CI. [1] [2] [3]npm run build-flutter-by-servicebefore installing dependencies in some workflows to ensure the project is built prior to dependency installation. [1] [2]Test Execution and Configuration:
npm run wdio-androidandnpm run wdio-iosinstead of the previous-civariants, and removed the explicit checkout of theflutter-finderrepo in GitHub Actions, simplifying test setup. [1] [2] [3]APP_PATHenvironment variable, increased timeouts for Flutter server launch and adb execution, improving reliability for slower environments.Workflow and Job Cleanup:
New Integration Workflow:
main.ymlworkflow influtter-finderto run both Java-based and WDIO-based integration tests for Android, ensuring comprehensive CI coverage for the integration driver.Other Minor Improvements:
test/*.pngto.prettierignoreto exclude test screenshots from formatting checks.These changes collectively modernize and streamline the CI/CD process, improve test reliability, and reduce unnecessary complexity.