This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
fix: add runner tests,update analysis and update ignored files #88
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: e2e | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "e2e" | |
steps: | |
- name: 📚 Git Checkout | |
uses: actions/checkout@v3 | |
- name: 🐦 Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.10.0 | |
- name: 📦 Install Dependencies | |
run: dart pub get | |
- name: 🧪 Run Tests | |
run: dart test --run-skipped -t e2e |