Bump actions/checkout from 5 to 6 (#26) #70
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
| name: Validate Plugin Version Test | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Test Validation Level | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Validate Plugin Version (Patch - Fail) | |
| uses: ./ | |
| with: | |
| plugin-path: '.github/workflows/fixtures/plugin-test-patch-fail/' | |
| dry-run: true | |
| validation-level: patch | |
| - name: Validate Plugin Version (Minor - Fail) | |
| uses: ./ | |
| with: | |
| plugin-path: '.github/workflows/fixtures/plugin-test-minor-fail/' | |
| dry-run: true | |
| validation-level: minor | |
| - name: Validate Plugin Version (Minor - Pass) | |
| uses: ./ | |
| with: | |
| plugin-path: '.github/workflows/fixtures/plugin-test-minor-pass/' | |
| dry-run: true | |
| validation-level: minor |