Type for NumberFormatSymbols so as not to do additional type casting #348
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: package:intl | |
permissions: read-all | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/intl.yml' | |
- 'pkgs/intl/**' | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/intl.yml' | |
- 'pkgs/intl/**' | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: pkgs/intl | |
strategy: | |
matrix: | |
sdk: [stable, dev] # {pkgs.versions} | |
include: | |
- sdk: stable | |
run-tests: true | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 | |
with: | |
sdk: ${{matrix.sdk}} | |
- run: dart pub get | |
- run: dart analyze --fatal-infos | |
- run: dart format --output=none --set-exit-if-changed . | |
if: ${{matrix.run-tests}} | |
- run: dart test | |
if: ${{matrix.run-tests}} | |
- name: Run Chrome tests - wasm | |
run: dart test --platform chrome --compiler dart2wasm | |
if: always() && matrix.sdk == 'dev' |