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

fix: change package description on pubspec #14

Merged
merged 4 commits into from
Oct 22, 2024
Merged
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
10 changes: 8 additions & 2 deletions .github/workflows/socket-client-test.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,22 @@ jobs:
dart pub get

- name: Verify formatting
id: format_check
run: |
cd packages/socket-client
dart format --output=write --set-exit-if-changed .
continue-on-error: true

- name: Check if formatting changed
id: format_changed
run: echo "name=formatting_changed::$(test -n "$(git status --porcelain)" && echo true || echo false)" >> $GITHUB_ENV

- name: Commit changes
if: steps.format_changed.outputs.formatting_changed == 'true'
run: |
git pull
git add .
git commit -m "chore(release): format code [skip ci]" || echo "No changes to commit"
git push --follow-tags
git push

- name: Running build runner
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/socket-client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: superviz_socket_client
description: The superviz's realtime package
description: The superviz's socket client package
repository: https://github.com/SuperViz/realtime-flutter/tree/master/packages/realtime
documentation: https://docs.superviz.com/realtime
homepage: https://superviz.com/
Expand Down