fix(deps): update dependency io.cucumber:cucumber-parent to v5.1.1 #411
Workflow file for this run
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: Test Java | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - renovate/** | |
| paths: | |
| - java/** | |
| - devkit/** | |
| - .github/** | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - java/** | |
| - devkit/** | |
| - .github/** | |
| jobs: | |
| test-java: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6 | |
| with: | |
| node-version: '24.x' | |
| cache: "npm" | |
| cache-dependency-path: devkit/package-lock.json | |
| - name: Copy the samples to java/../features | |
| run: npm ci && npm run copy-to:java | |
| working-directory: devkit | |
| - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| cache: 'maven' | |
| - run: mvn verify | |
| working-directory: java |