mirror of
https://github.com/chenasraf/dart_script_runner.git
synced 2026-05-18 01:49:04 +00:00
13 lines
321 B
YAML
13 lines
321 B
YAML
# add a config in the script_runner.yaml
|
|
# note! there is no `script_runner` key at the root here:
|
|
shell: /bin/zsh
|
|
scripts:
|
|
- test: dart test
|
|
- lint-fix: dart fix --apply
|
|
- name: build:apk
|
|
cmd: flutter build apk
|
|
- name: build:ipa
|
|
cmd: flutter build ipa
|
|
- name: build:all
|
|
cmd: build:apk && build:ipa
|