Skip to content

chore(deps): bump bluefireteam/melos-action from dd3c344d731938d2ab2567a261f54a19a68b5f6a to 6085791af7036f6366c9a4b9d55105c0ef9c6388 #80

chore(deps): bump bluefireteam/melos-action from dd3c344d731938d2ab2567a261f54a19a68b5f6a to 6085791af7036f6366c9a4b9d55105c0ef9c6388

chore(deps): bump bluefireteam/melos-action from dd3c344d731938d2ab2567a261f54a19a68b5f6a to 6085791af7036f6366c9a4b9d55105c0ef9c6388 #80

Workflow file for this run

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Run code analysis
on:
pull_request:
push:
branches:
- main
jobs:
flutter-analyze:
timeout-minutes: 45
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa
with:
channel: 'stable'
cache: true
- uses: bluefireteam/melos-action@6085791af7036f6366c9a4b9d55105c0ef9c6388
with:
melos-version: '3.0.1'
- name: 'Run Flutter Analyze'
run: melos run flutter-analyze
format:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa
with:
channel: 'stable'
cache: true
- uses: bluefireteam/melos-action@6085791af7036f6366c9a4b9d55105c0ef9c6388
with:
melos-version: '3.0.1'
- name: Restore Cache
uses: actions/cache/restore@v3
id: cache
with:
path: /home/linuxbrew/.linuxbrew
key: ${{ runner.os }}-linuxbrew-
- uses: Homebrew/actions/setup-homebrew@master
- name: 'Install swiftformat v0.53'
run: |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/86f85aaa82beba49f8a5aabf3a22508c9249f188/Formula/s/swiftformat.rb
echo 'brew "swiftformat.rb"' > Brewfile
brew bundle
- name: Save Cache
uses: actions/cache/save@v3
if: endsWith(steps.cache.outputs.cache-matched-key,hashFiles('Brewfile.lock.json')) == false
with:
path: /home/linuxbrew/.linuxbrew
key: ${{ runner.os }}-linuxbrew-${{ hashFiles('Brewfile.lock.json') }}
- name: 'Formatter version'
run: |
swiftformat --version
- name: 'Run format'
if: ${{ success() || failure() }}
run: |
melos run format
- name: 'Validate formatting'
if: ${{ success() || failure() }}
run: |
./.github/workflows/scripts/validate-formatting.sh