Skip to content

chore(deps): update dependency semantic-release-pub to v0.8.27 (#1374) #3618

chore(deps): update dependency semantic-release-pub to v0.8.27 (#1374)

chore(deps): update dependency semantic-release-pub to v0.8.27 (#1374) #3618

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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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@v4.5.0
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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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