chore: Firebase environment #198
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: Clokey CI | |
| # | |
| #on: | |
| # pull_request: | |
| # branches: [ "main", "develop" ] | |
| # paths: | |
| # - "clokey-api/**" | |
| # - "clokey-domain/**" | |
| # - "clokey-common/**" | |
| # - "clokey-common-web/**" | |
| # - ".github/workflows/ci.yml" | |
| # | |
| #permissions: | |
| # contents: read | |
| # | |
| #jobs: | |
| # build: | |
| # runs-on: ubuntu-latest | |
| # | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # with: | |
| # clean: true | |
| # | |
| # - name: Setup Java 21 | |
| # uses: actions/setup-java@v4 | |
| # with: | |
| # distribution: 'corretto' | |
| # java-version: '21' | |
| # | |
| # - name: Start Redis container for test | |
| # run: docker compose -f ./docker-compose-test.yml up -d | |
| # | |
| # - name: Gradle Caching | |
| # uses: actions/cache@v4 | |
| # with: | |
| # path: | | |
| # ~/.gradle/caches | |
| # ~/.gradle/wrapper | |
| # key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
| # restore-keys: ${{ runner.os }}-gradle- | |
| # | |
| # - name: Grant execute permission for gradlew | |
| # run: chmod +x ./gradlew | |
| # | |
| # - name: Spotless Check | |
| # run: ./gradlew spotlessCheck | |
| # | |
| # - name: SonarCloud Caching | |
| # uses: actions/cache@v4 | |
| # with: | |
| # path: ~/.sonar/cache | |
| # key: ${{ runner.os }}-sonar | |
| # restore-keys: ${{ runner.os }}-sonar | |
| # | |
| # - name: Test and Analyze | |
| # env: | |
| # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| # run: ./gradlew test sonar --info --stacktrace |