Skip to content

chore(deps): update dependency dart to v3.11.6 #164

chore(deps): update dependency dart to v3.11.6

chore(deps): update dependency dart to v3.11.6 #164

Workflow file for this run

name: Dart CI
on:
pull_request:
types: [opened, synchronize]
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup mise
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
- name: install dependencies
run: dart pub get
# We don't run formatter as we want to keep unormdata.dart as is.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: dart analyze
- name: test on vm
run: dart pub run test --platform vm
- name: test on chrome
run: dart pub run test --platform chrome ./test/unorm_dart_test.dart
- name: Dry-run publish
run: dart pub publish --dry-run