SYS-492 Summarize log and post as comment #204
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
name: Node CI Workflow | |
# | |
# The parameters are defaulted at the org level but can be overridden on the repository. | |
# See the github-automation repo for more documentation | |
# | |
on: | |
push: | |
branches: | |
- dev | |
- main | |
pull_request: | |
branches: | |
- dev | |
- main | |
issue_comment: | |
inputs: | |
workflowBranch: | |
description: 'Branch of the reusable workflow. Defaults to main, select dev for testing only.' | |
required: true | |
default: 'main' | |
type: choice | |
options: | |
- dev | |
- main | |
workflow_dispatch: | |
inputs: | |
workflowBranch: | |
description: 'Branch of the reusable workflow. Defaults to main, select dev for testing only.' | |
required: true | |
default: 'main' | |
type: choice | |
options: | |
- dev | |
- main | |
jobs: | |
echo-inputs: | |
name: Repo Workflow Debugging | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Repo Vars | |
run: | | |
echo "*** Start - Check inputs in repo workflow ***" | |
echo "Rust Version: ${{ vars.RUST_VERSION }}" | |
echo "Node Version: ${{ vars.NODE_VERSION }}" | |
echo "Lint Required: ${{ vars.IS_LINT_REQUIRED }}" | |
echo "Format Check Required: ${{ vars.IS_FORMAT_CHECK_REQUIRED }}" | |
echo "Apply Patches Required: ${{ vars.IS_APPLY_PATCHES_REQUIRED }}" | |
echo "Unit Tests Required: ${{ vars.IS_UNIT_TESTS_REQUIRED }}" | |
echo "*** End - Check inputs in repo workflow ***" | |
ci-test-only: | |
if: ${{ github.event.inputs.workflowBranch == 'dev' }} | |
uses: shardeum/github-automation/.github/workflows/reusable-node-ci.yml@dev | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: write | |
with: | |
# These are optional and included here demonstratively. If either of these are to be overridden at the repo level, | |
# include them (uncommented) in that repo's ci.yml. Include them in BOTH ci and ci-test-only! | |
# rust-version: ${{ vars.RUST_VERSION }} | |
# target-coverage: ${{ vars.TARGET_COVERAGE }} | |
node-version: ${{ vars.NODE_VERSION }} | |
lint-required: ${{ vars.IS_LINT_REQUIRED == 'true' }} | |
format-check-required: ${{ vars.IS_FORMAT_CHECK_REQUIRED == 'true' }} | |
apply-patches-required: ${{ vars.IS_APPLY_PATCHES_REQUIRED == 'true' }} | |
unit-tests-required: ${{ vars.IS_UNIT_TESTS_REQUIRED == 'true' }} | |
secrets: inherit | |
ci: | |
if: ${{ github.event.inputs.workflowBranch == 'main' || !github.event.inputs.workflowBranch }} | |
uses: shardeum/github-automation/.github/workflows/reusable-node-ci.yml@main | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: write | |
with: | |
# rust-version: ${{ vars.RUST_VERSION }} | |
# target-coverage: ${{ vars.TARGET_COVERAGE }} | |
node-version: ${{ vars.NODE_VERSION }} | |
lint-required: ${{ vars.IS_LINT_REQUIRED == 'true' }} | |
format-check-required: ${{ vars.IS_FORMAT_CHECK_REQUIRED == 'true' }} | |
apply-patches-required: ${{ vars.IS_APPLY_PATCHES_REQUIRED == 'true' }} | |
unit-tests-required: ${{ vars.IS_UNIT_TESTS_REQUIRED == 'true' }} | |
secrets: inherit |