|
119 | 119 | 'SKELETON_QUESTION_COMPONENT_TESTS' => 'Create sample PHPUnit tests?', |
120 | 120 | 'SKELETON_QUESTION_COMPONENT_TESTS_UI' => 'Tests (PHPUnit)', |
121 | 121 | 'SKELETON_QUESTION_COMPONENT_TESTS_EXPLAIN' => 'Unit tests can test an extension to verify that specific portions of its source code work properly. This helps ensure basic code integrity and prevents regressions as an extension is being developed and debugged.', |
122 | | - 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS' => 'Create a workflow for test execution using Github Actions?', |
123 | | - 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_UI' => 'Github Actions CI configuration', |
124 | | - 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_EXPLAIN' => 'Github Actions allow you to run PHPUnit tests on your GitHub repository. This will generate the workflow YML needed to begin testing your phpBB extension with each commit and pull request. Note that this workflow will be inside a hidden folder (.github/workflows).', |
| 122 | + 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS' => 'Create a GitHub Actions workflow using phpBB’s test framework?', |
| 123 | + 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_UI' => 'Github Actions workflow', |
| 124 | + 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_EXPLAIN' => 'Creates a GitHub Actions workflow to run PHPUnit tests on your repository using phpBB’s official test framework. The workflow YML file will be placed in the .github/workflows folder and will run tests automatically on each commit and pull request.', |
| 125 | + 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_CUSTOM' => 'Create a custom GitHub Actions workflow for test execution?', |
| 126 | + 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_CUSTOM_UI' => 'Github Actions custom workflow', |
| 127 | + 'SKELETON_QUESTION_COMPONENT_GITHUBACTIONS_CUSTOM_EXPLAIN' => 'Creates a customisable GitHub Actions workflow to run PHPUnit tests on your repository. This workflow is flexible to fit your specific testing needs and will be saved in the .github/workflows folder, triggered by each commit and pull request. Choosing this will override the non-customisable workflow.', |
125 | 128 | 'SKELETON_QUESTION_COMPONENT_BUILD' => 'Create a sample build script for phing?', |
126 | 129 | 'SKELETON_QUESTION_COMPONENT_BUILD_UI' => 'Build script (phing)', |
127 | 130 | 'SKELETON_QUESTION_COMPONENT_BUILD_EXPLAIN' => 'A phing build script is generated for your extension which can be used to generate build packages to help simplify the release or deployment processes.', |
|
0 commit comments