chore(deps): bump bluefireteam/melos-action from c7dcb921b23cc520cace360b95d02b37bf09cdaa to 68b03fa391f4242e956f7e39e9ee27c096b901e4 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
integration_test: | |
name: Run Integration Tests | |
if: github.event.label.name == 'integration test' | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📚 Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: 🎯 Setup Dart | |
uses: dart-lang/[email protected] | |
with: | |
sdk: "stable" | |
- name: Ⓜ️ Set up Melos | |
uses: bluefireteam/melos-action@68b03fa391f4242e956f7e39e9ee27c096b901e4 | |
- name: 🧪 Run Integration Tests | |
env: | |
FIGMA_FREE_TOKEN: ${{ secrets.FIGMA_FREE_TOKEN }} | |
run: | | |
dart test integration_test/generation_notifier_integration_test.dart | |
dart test integration_test/full_integration_test.dart |