Add integration test for API + CC error

This commit is contained in:
Phil Jay
2026-08-10 12:19:10 +10:00
parent 284d1792e3
commit 69ceeacf75

View File

@@ -67,6 +67,18 @@ jobs:
shell: bash shell: bash
run: '[[ "$(date +%Y.%-m)" == "$(echo "${{ steps.version-increment.outputs.VERSION }}" | cut -d "." -f 1-2)" ]]' run: '[[ "$(date +%Y.%-m)" == "$(echo "${{ steps.version-increment.outputs.VERSION }}" | cut -d "." -f 1-2)" ]]'
- name: Test conventional commit increment version (with API)
id: version-increment-conventional
run: ./version-increment.sh
env:
current_version: 1.2.3
scheme: conventional_commits
use_api: 'true'
- name: Check conventional commit increment result
shell: bash
run: '[[ -n "${{ steps.version-increment-conventional.outputs.VERSION }}" ]]'
test-action-yml: # integration testing test-action-yml: # integration testing
needs: needs:
- lint - lint