fix(deps): update dependency intl to v0.20.0 #3755
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: Appainter Builder | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
defaults: | |
run: | |
working-directory: packages/builder | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Dart 💻 | |
uses: dart-lang/setup-dart@v1.4 | |
- name: Cache Pub 💾 | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.PUB_CACHE }} | |
**/.dart_tool | |
key: ${{ runner.os }}-pub-${{ hashFiles('pubspec.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pub- | |
- name: Run tests 🧪 | |
run: | | |
dart pub get | |
dart test --coverage=./coverage | |
dart run coverage:format_coverage --report-on=lib --lcov -o ./coverage/lcov.info -i ./coverage/ | |
- name: Upload coverage report 📡 | |
uses: codecov/codecov-action@v5.0.2 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: packages/builder/coverage/lcov.info | |
flags: appainter_builder | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Dart 💻 | |
uses: dart-lang/setup-dart@v1.4 | |
- name: Cache Pub 💾 | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.PUB_CACHE }} | |
**/.dart_tool | |
key: ${{ runner.os }}-pub-${{ hashFiles('pubspec.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pub- | |
- name: Run linting 🧪 | |
run: | | |
dart pub get | |
dart format --output=none --set-exit-if-changed . | |
dart analyze |