test #2
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
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/test_win.yml' | |
- 'packages/**' | |
push: | |
branches: | |
- wintest | |
paths: | |
- '.github/workflows/test_win.yml' | |
- 'packages/**' | |
name: Test Pipeline | |
jobs: | |
test: | |
name: Test Windows | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- uses: dart-lang/[email protected] | |
- uses: subosito/flutter-action@v2 | |
- name: Version | |
run: dart --version | |
- name: Version | |
run: | | |
dart --version | |
- name: Bootstrap | |
run: | | |
dart pub global activate melos | |
melos bootstrap --no-private | |
jaspr --disable-analytics | |
- name: Test CLI | |
run: melos run test:cli |