Skip to content

Commit

Permalink
Merge pull request #127 from adyen-examples/github-actions
Browse files Browse the repository at this point in the history
GitHub actions configuration
  • Loading branch information
gcatanese authored Sep 19, 2024
2 parents 3044718 + 36883cd commit 0a09251
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Build

on:
push:
branches: [ main ]
paths-ignore:
- '**/README.md'
- README.md
Expand All @@ -25,9 +26,9 @@ jobs:
java: [ '17' ]
name: Build with Java ${{ matrix.Java }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'

Expand All @@ -40,7 +40,7 @@ jobs:
working-directory: react-app

- name: Setup java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
Expand Down

0 comments on commit 0a09251

Please sign in to comment.