Skip to content

Commit

Permalink
feat: add Dart github action #7
Browse files Browse the repository at this point in the history
  • Loading branch information
slightfoot committed Dec 20, 2024
1 parent ab569f6 commit c3a227c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Push/PR Checks

on:
push:
branches: [ "main" ]
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 top-level dependencies
run: dart pub get

- name: Install melos
run: dart pub global activate melos

- 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: Run tests in clerk_auth
run: dart test
working-directory: packages/clerk_auth
14 changes: 14 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Publish Packages

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

0 comments on commit c3a227c

Please sign in to comment.