Build everything from parent POM; unbreak github Action build #181
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: Continuous integration build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
cache: 'maven' | |
- name: runs exhaustive tests | |
run: | | |
export JSWEET_VERBOSE=false | |
mvn clean install | |
#cd transpiler | |
#mvn clean install | |
#cd .. | |
#echo 'clone test repositories' | |
#git clone https://github.com/lgrignon/jsweet-java-runtime-transpilation-tests.git | |
#git clone https://github.com/lgrignon/j4ts-example.git | |
#echo 'transpile legacy j4ts sources' | |
#cd jsweet-java-runtime-transpilation-tests | |
#mvn clean generate-sources | |
#cd .. | |
#echo 'run j4ts tests' | |
#cd j4ts-example | |
#mvn clean compile && node target/j4ts-example-bundle.js | |