Add FUNDING.md for project sponsorship information #173
This file contains hidden or 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: 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 |