Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ThexXTURBOXx committed Sep 27, 2023
1 parent c653d48 commit 7fb8e92
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install melos
run: flutter pub global activate melos
run: |
flutter pub global activate melos
echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
echo "$HOME/AppData/Local/Pub/Cache/bin" >> $GITHUB_PATH
- name: Initialize workspace
run: melos bootstrap
- name: Check format
Expand All @@ -30,7 +33,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install melos
run: flutter pub global activate melos
run: |
flutter pub global activate melos
echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH
echo "$HOME/AppData/Local/Pub/Cache/bin" >> $GITHUB_PATH
- name: Initialize workspace
run: melos bootstrap
- name: Lint using flutter analyze
Expand Down

0 comments on commit 7fb8e92

Please sign in to comment.