build(001): Gradle 9.5.1; уточнення коментаря FLAG_SECURE #17
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: [master] | |
| pull_request: | |
| jobs: | |
| core-crypto: | |
| name: Криптоядро (Kotlin/JVM) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| - uses: gradle/actions/setup-gradle@v4 | |
| - name: Векторні тести | |
| working-directory: android-app | |
| run: ./gradlew :core-crypto:test | |
| web-stand: | |
| name: Web-стенд (Vitest) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: npm | |
| cache-dependency-path: web-stand/package-lock.json | |
| - name: Векторні тести | |
| working-directory: web-stand | |
| run: | | |
| npm ci | |
| npm test |