Bump json5 from 2.2.1 to 2.2.3 in /paybylink-example/src/main/js #681
Workflow file for this run
This file contains 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: Java CI with Gradle | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-checkout: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
name: Java ${{ matrix.Java }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Grant checkout-example execute permission for gradlew | |
run: chmod +x checkout-example/gradlew | |
- name: Build checkout-example with Gradle | |
run: cd checkout-example; ./gradlew build | |
build-subscription: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
name: Java ${{ matrix.Java }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x subscription-example/gradlew | |
- name: Build with Gradle | |
run: cd subscription-example; ./gradlew build | |
build-paybylinks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
name: Java ${{ matrix.Java }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x paybylink-example/gradlew | |
- name: Build with Gradle | |
run: cd paybylink-example; ./gradlew build |