fix(hermes): Remove unused CI stages #4
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: 🧪 Flutter Web Integration Tests | |
# cspell: words subosito bluefireteam | |
permissions: | |
contents: read | |
id-token: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
branches: | |
- "main" | |
paths-ignore: | |
- "**.md" | |
- "doc/**" | |
- ".vscode/" | |
jobs: | |
integration-tests: | |
name: Web - Integration Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: ⬇️ Checkout repository | |
uses: actions/checkout@v3 | |
- name: ⚙️ Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
cache: true | |
- name: ⚙️ Setup Melos | |
uses: bluefireteam/melos-action@v2 | |
- name: ⚙️ Install dependencies for all packages | |
run: melos build:pub_get:all | |
- name: 🤖 Run Integration Tests | |
run: ./scripts/flutter_web_integration_test.sh |