fix(cloud_auth): Ensure session is linked to user cork #29
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: celest_cloud_auth | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/celest_cloud_auth.yaml" | |
| - "services/celest_cloud_auth/**" | |
| # Prevent duplicate runs due to Graphite | |
| # https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze_and_format: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff # 2.18.0 | |
| with: | |
| cache: true | |
| - name: Get Packages | |
| working-directory: services/celest_cloud_auth | |
| run: dart pub upgrade | |
| - name: Analyze | |
| working-directory: services/celest_cloud_auth | |
| run: dart analyze | |
| - name: Format | |
| working-directory: services/celest_cloud_auth | |
| run: dart format --set-exit-if-changed . | |
| test: | |
| runs-on: macos-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff # 2.18.0 | |
| with: | |
| cache: true | |
| - name: Get Packages | |
| working-directory: services/celest_cloud_auth | |
| run: dart pub upgrade | |
| - name: Test | |
| working-directory: services/celest_cloud_auth | |
| run: dart test |