🔨 Refactor SemanticColorGroup to use Tailwind CSS color palette #4720
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUILD_FULL_PLATFORM: YES | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| check-latest: true | |
| - name: Cache Gradle dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: > | |
| ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', | |
| '**/gradle-wrapper.properties', '**/libs.versions.toml') }} | |
| - name: Cache JetBrains Runtime JDK | |
| uses: actions/cache@v4 | |
| with: | |
| path: ./app/jbr | |
| key: jbr-${{ hashFiles('**/jbr.yaml') }} | |
| - name: Cache Kotlin Native dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.konan | |
| key: ${{ runner.os }}-konan-${{ hashFiles('**/libs.versions.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-konan- | |
| - name: Build with Gradle | |
| run: ./gradlew build |