ci: use Java 17 in test workflow to match Selenium classfile version #192
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 | |
| on: push | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ~/.npm | |
| key: v1/${{ runner.os }}/java-8/${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: v1/${{ runner.os }}/java-8/ | |
| - run: make install | |
| - run: make test | |
| env: | |
| PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} |