Skip to content

Update CI configuration *. #4

Update CI configuration *.

Update CI configuration *. #4

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install Dependencies
run: dart pub get
- name: Format
run: dart format --output=none --set-exit-if-changed .
- name: Analyze
run: dart analyze --fatal-infos --fatal-warnings .
- name: Run WEB Tests
run: |
dart test --platform chrome