Add a WinUI 3 client backed by kotlin-native-nuget #603
Workflow file for this run
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: Web CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| # Cancel superseded runs for the same PR/branch | |
| concurrency: | |
| group: web-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - uses: gradle/actions/setup-gradle@v6 | |
| - name: kotlinUpgradeYarnLock | |
| run: ./gradlew kotlinUpgradeYarnLock | |
| - name: Build web app | |
| run: ./gradlew :compose-web:assemble |