Skip to content

Commit

Permalink
Added github action to make make verifycation builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mstahv committed Nov 17, 2023
1 parent 6fc47a9 commit 27be655
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Java CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[maven-release-plugin]') }}

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify -Pit
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<dependency>
<groupId>com.microsoft.playwright</groupId>
<artifactId>playwright</artifactId>
<version>1.36.0</version> <!-- Check the latest version via https://playwright.dev -->
<version>1.39.0</version> <!-- Check the latest version via https://playwright.dev -->
</dependency>

<dependency>
Expand Down

0 comments on commit 27be655

Please sign in to comment.