|
|
|
name: Dart CI
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
PUB_ENVIRONMENT: bot.github
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: dart-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dart-ci:
|
|
|
|
name: Dart CI
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
|
|
|
|
with:
|
|
|
|
path: ~/.pub-cache/hosted
|
|
|
|
key: dart-ci
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
|
|
|
|
|
|
|
|
- name: Install dart
|
|
|
|
uses: dart-lang/setup-dart@8a4b97ea2017cc079571daec46542f76189836b1 # v1
|
|
|
|
- name: Setup
|
|
|
|
run: ./tool/setup.sh
|
|
|
|
- name: Build test Docker image
|
|
|
|
run: ./tool/build-dev-container.sh
|
|
|
|
|
|
|
|
- name: Check formatting
|
|
|
|
run: melos run format-check
|
|
|
|
- name: Lint code
|
|
|
|
run: melos run analyze
|
|
|
|
- name: Run tests
|
|
|
|
run: melos run test
|