We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eea0c8 commit e1a7169Copy full SHA for e1a7169
.github/workflows/ci.yml
@@ -51,6 +51,15 @@ jobs:
51
run: dart format packages/dart/test/src
52
- name: Lint
53
run: dart format --output=none --set-exit-if-changed packages/dart
54
+ - name: Rollback uncommitted changes for Fix Bug mocks
55
+ run: |
56
+ git status --porcelain
57
+ if [ -n "$(git status --porcelain)" ]; then
58
+ echo "There are uncommitted changes. Rolling back the following files:"
59
+ git checkout -- test/src/network/parse_query_test.mocks.dart test/src/objects/parse_object/parse_object_test.mocks.dart
60
+ else
61
+ echo "No uncommitted changes found."
62
+ fi
63
- name: Publish dry run
64
run: cd packages/dart && dart pub publish --dry-run
65
- name: Run tests
0 commit comments