adding html canvas example #670
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: Tests | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@v1.5.0 | |
- uses: subosito/flutter-action@v2.10.0 | |
with: | |
channel: "stable" | |
- name: Install melos | |
run: dart pub global activate melos | |
- name: Install dependencies | |
run: melos exec --no-private flutter pub get | |
- name: Analyze packages | |
run: melos run analyze | |
- name: Test packages | |
run: melos run test |