Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ContentLayers widgets from super_editor (Resolves #49) #50

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Run analysis and tests for pull requests
on: [pull_request]
jobs:
test:
analysis:
runs-on: ubuntu-latest
steps:
# Checkout the PR branch
Expand All @@ -18,6 +18,20 @@ jobs:
# Static analysis
- run: flutter analyze

test:
runs-on: ubuntu-latest
steps:
# Checkout the PR branch
- uses: actions/checkout@v3

# Setup Flutter environment
- uses: subosito/flutter-action@v2
with:
channel: "stable"

# Download all the packages that the app uses
- run: flutter pub get

# Run all tests
- run: flutter test

Expand All @@ -36,8 +50,5 @@ jobs:
# Download all the packages that the app uses
- run: flutter pub get

# Static analysis
- run: flutter analyze

# Run all tests
- run: flutter test test_goldens
3 changes: 3 additions & 0 deletions lib/follow_the_leader.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
library follow_the_leader;

export 'src/build_in_order.dart';
export 'src/content_layers.dart';
export 'src/follower.dart';
export 'src/follower_extensions.dart';
export 'src/leader_link.dart';
export 'src/leader.dart';
export 'src/logging.dart';
export 'src/render_sliver_ext.dart';
export 'src/sliver_hybrid_stack.dart';
Loading
Loading