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 0ceed6c commit 36eadafCopy full SHA for 36eadaf
.github/workflows/ci.yml
@@ -52,19 +52,8 @@ jobs:
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
- shell: pwsh
56
run: |
57
- $files = @(
58
- "packages\dart\test\src\network\parse_query_test.mocks.dart",
59
- "packages\dart\test\src\objects\parse_object\parse_object_test.mocks.dart"
60
- )
61
- $files | ForEach-Object {
62
- if (Test-Path $_) {
63
- git checkout -- $_
64
- } else {
65
- Write-Host "File $_ does not exist, skipping checkout."
66
- }
67
+ git checkout HEAD .
68
- name: Publish dry run
69
run: cd packages/dart && dart pub publish --dry-run
70
- name: Run tests
0 commit comments