-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e1a5d7
commit ee9255f
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Push/PR Checks | ||
|
||
on: | ||
push: | ||
branches: [ "main", "feat/7-github-actions" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
pr_check: | ||
name: PR Check Build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo (self) | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install flutter | ||
uses: flutter-actions/setup-flutter@v4 | ||
with: | ||
version: '3.10.0' | ||
|
||
- name: 'Install tools: melos and fvm' | ||
run: dart pub global activate melos && dart pub global activate fvm | ||
|
||
- name: Install top-level dependencies | ||
run: dart pub get | ||
|
||
- name: Run melos | ||
run: melos bs && melos run get | ||
|
||
- name: Verify formatting of clerk_auth | ||
run: dart format --output=none --set-exit-if-changed . | ||
working-directory: packages/clerk_auth | ||
|
||
- name: Verify formatting of clerk_flutter | ||
run: dart format --output=none --set-exit-if-changed . | ||
working-directory: packages/clerk_flutter | ||
|
||
- name: Analyze clerk_auth | ||
run: dart analyze | ||
working-directory: packages/clerk_auth | ||
|
||
- name: Analyze clerk_flutter | ||
run: flutter analyze | ||
working-directory: packages/clerk_flutter | ||
|
||
- name: Prepare test environment | ||
env: | ||
TEST_ENV_BASE64: ${{ secrets.TEST_ENV_BASE64 }} | ||
run: | | ||
echo $TEST_ENV_BASE64 | base64 --decode > packages/clerk_auth/.env.test | ||
- name: Run tests in clerk_auth | ||
run: dart test | ||
working-directory: packages/clerk_auth |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Publish Packages | ||
|
||
on: workflow_call | ||
|
||
jobs: | ||
publish_clerk_auth: | ||
name: Publish clerk_auth package | ||
uses: dart-lang/setup-dart/.github/workflows/publish.yml@main | ||
with: | ||
working-directory: packages/clerk_auth | ||
publish_clerk_flutter: | ||
name: Publish clerk_flutter package | ||
needs: [publish_clerk_auth] | ||
uses: dart-lang/setup-dart/.github/workflows/publish.yml@main | ||
with: | ||
working-directory: packages/clerk_flutter |