Fixed failure querying the task inputs/outputs on 8+ #259 #373
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: Build Examples | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
examples: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v3 | |
- name: Install Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install yarn | |
run: npm install -g [email protected] | |
- name: Gradle Version | |
run: ./gradlew --version | |
- name: Build Node.js Scripts Project | |
run: ./gradlew -p examples/simple-node helloWorld | |
# - name: Build Spring Boot Angular Project | |
# run: ./gradlew -p examples/spring-boot-angular build | |
# - name: Build Vert.x React Project | |
# run: ./gradlew -p examples/vertx-react build |