Merge pull request #90 from TeamDev-IP/release-jxbrowser-8.15.0 #380
This file contains hidden or 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 under Windows | |
| on: push | |
| jobs: | |
| build: | |
| name: Build under Windows | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.9.0 | |
| # Keep synced Java version with `gradle/libs.versions.toml`. | |
| - name: Set up Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 17 | |
| distribution: zulu | |
| cache: gradle | |
| - name: Configure Pagefile | |
| uses: al-cheb/configure-pagefile-action@v1.3 | |
| - name: Build the project | |
| shell: cmd | |
| run: gradlew.bat build --stacktrace |