Skip to content
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
sdk: 2.18.7
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We currently only support dart 2.x, will have to spend some time considering how to handle multiple versions of dart

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that's interesting. I've got some ideas if you want to chat about it

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definitely, I have one idea, but it doesn't really improve much, would love to chat

- run: dart pub get
- run: dart run dart_dev format

Expand All @@ -20,6 +20,6 @@ jobs:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
sdk: 2.18.7
- run: dart pub get
- run: dart run dependency_validator
6 changes: 4 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: pub get snapshots directory
run: dart pub get
working-directory: ./snapshots/input/basic-project

- name: Snapshots Diff Check
run: |
dart run scip_dart ./snapshots/input/basic-project
Expand All @@ -46,7 +46,7 @@ jobs:

consumer:
runs-on: ubuntu-latest

strategy:
matrix:
repo: ["Workiva/over_react", "rrousselGit/provider", "dart-lang/args"]
Expand All @@ -55,6 +55,8 @@ jobs:
# Setup scip-dart
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: 2.18.7
- run: dart pub get

# Setup repo to run on
Expand Down