chore(deps): bump json_serializable, source_gen, pub_updater, dart_style, melos and freezed #16
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@c7dcb921b23cc520cace360b95d02b37bf09cdaa | |
- 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 |