Skip to content

Rewrites XHR implementation and other things. #99

Rewrites XHR implementation and other things.

Rewrites XHR implementation and other things. #99

Workflow file for this run

name: Dart CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.sdk != 'stable' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-slim-latest] #, windows-latest, macos-26]
sdk: [3.6, stable, dev]
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- name: Print version
run: dart --version
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --set-exit-if-changed .
- name: Analyze project source
run: dart analyze
- name: Run tests (VM)
run: dart test --platform vm
- name: Run tests (Chrome)
run: dart test --platform chrome