Skip to content

Remove usage of dart:js & package:js and therefore remove usage of allowInterop #44

Remove usage of dart:js & package:js and therefore remove usage of allowInterop

Remove usage of dart:js & package:js and therefore remove usage of allowInterop #44

Workflow file for this run

name: Flute
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
sdk: [beta, dev]
steps:
- name: Job info
run: |
echo "Triggered ${{ github.event_name }}"
echo "Running on ${{ runner.os }}"
echo "Branch: ${{ github.ref }}; repo: ${{ github.repository }}."
- name: Fetch sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install Dart SDK
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
with:
sdk: ${{ matrix.sdk }}
- name: Pub get
run: |
(cd engine && dart pub get)
(cd framework && dart pub get)
(cd benchmarks && dart pub get)
(cd script && dart pub get)
- name: Analyze
run: |
dart analyze --fatal-infos --fatal-warnings
- run: echo "🍏 This job's status is ${{ job.status }}."