Skip to content

build(deps): bump melos from 6.0.0 to 6.1.0 #509

build(deps): bump melos from 6.0.0 to 6.1.0

build(deps): bump melos from 6.0.0 to 6.1.0 #509

Workflow file for this run

name: Test
on:
# pull_request_target is dangerous! Review external PRs code before approving to run the workflow
# We need this to be able to access the secrets required by the workflow
pull_request_target:
workflow_dispatch:
# Cancel currently running workflow when a new one is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
name: Run Linter & Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
ref: "${{ github.event.pull_request.base.sha }}" # Required for pull_request_target
fetch-depth: 0
- name: Install Flutter
uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1
with:
channel: 'stable'
- name: Set-up Flutter
run: |
flutter config --no-analytics
dart --disable-analytics
- name: Clear pub cache
run: flutter pub cache clean
- name: Install Melos
uses: bluefireteam/melos-action@6085791af7036f6366c9a4b9d55105c0ef9c6388
with:
run-bootstrap: false
- name: Bootstrap
uses: nick-invision/retry@7152eba30c6575329ac0576536151aca5a72780e
with:
timeout_minutes: 5
max_attempts: 5
delay_seconds: 5
command: melos bootstrap
- name: Run linter
run: melos lint:diff
- name: Run unit tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
VERTEX_AI_PROJECT_ID: ${{ secrets.VERTEX_AI_PROJECT_ID }}
VERTEX_AI_SERVICE_ACCOUNT: ${{ secrets.VERTEX_AI_SERVICE_ACCOUNT }}
run: melos test:diff