Skip to content

Updates

Updates #70

Workflow file for this run

name: Dart
on:
# Run on PRs and pushes to the default branch.
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [stable]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- id: Install
name: Install dependencies
working-directory: ./packages/extensions
run: dart pub get
- name: Check formatting
working-directory: ./packages/extensions
run: dart format --output=none --set-exit-if-changed .
if: always() && steps.install.outcome == 'success'
- name: Analyze code
working-directory: ./packages/extensions
run: dart analyze --fatal-infos
if: always() && steps.install.outcome == 'success'
# Run tests on a matrix consisting of two dimensions:
# 1. OS: ubuntu-latest, (macos-latest, windows-latest)
# 2. release channel: dev
test:
needs: analyze
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Add macos-latest and/or windows-latest if relevant for this package.
os: [ubuntu-latest]
sdk: [2.17.1, dev]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/[email protected]
with:
sdk: ${{ matrix.sdk }}
- id: Install
name: Install dependencies
working-directory: ./packages/extensions
run: dart pub get
- name: Run VM tests
working-directory: ./packages/extensions
run: dart test --platform vm
if: always() && steps.install.outcome == 'success'
- name: Run Chrome tests
working-directory: ./packages/extensions
run: dart test --platform chrome
if: always() && steps.install.outcome == 'success'