|
|
@ -4,12 +4,6 @@ on: |
|
|
|
branches: |
|
|
|
branches: |
|
|
|
- main |
|
|
|
- main |
|
|
|
pull_request: |
|
|
|
pull_request: |
|
|
|
defaults: |
|
|
|
|
|
|
|
run: |
|
|
|
|
|
|
|
shell: bash |
|
|
|
|
|
|
|
env: |
|
|
|
|
|
|
|
PUB_ENVIRONMENT: bot.github |
|
|
|
|
|
|
|
permissions: read-all |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
concurrency: |
|
|
|
concurrency: |
|
|
|
group: dart-${{ github.head_ref || github.run_id }} |
|
|
|
group: dart-${{ github.head_ref || github.run_id }} |
|
|
@ -19,21 +13,31 @@ jobs: |
|
|
|
dart-ci: |
|
|
|
dart-ci: |
|
|
|
name: Dart CI |
|
|
|
name: Dart CI |
|
|
|
runs-on: ubuntu-22.04 |
|
|
|
runs-on: ubuntu-22.04 |
|
|
|
|
|
|
|
permissions: |
|
|
|
|
|
|
|
packages: write |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
|
|
|
|
- name: Checkout |
|
|
|
|
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 |
|
|
|
|
|
|
|
- name: Login to GHCR |
|
|
|
|
|
|
|
uses: docker/login-action@v3 |
|
|
|
|
|
|
|
with: |
|
|
|
|
|
|
|
registry: ghcr.io |
|
|
|
|
|
|
|
username: ${{ github.actor }} |
|
|
|
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
|
|
|
|
- name: Set up Docker Buildx |
|
|
|
|
|
|
|
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3 |
|
|
|
|
|
|
|
- name: Build test Docker image |
|
|
|
|
|
|
|
run: ./tool/build-dev-container.sh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install dart |
|
|
|
|
|
|
|
uses: dart-lang/setup-dart@8a4b97ea2017cc079571daec46542f76189836b1 # v1 |
|
|
|
- name: Cache dependencies |
|
|
|
- name: Cache dependencies |
|
|
|
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 |
|
|
|
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 |
|
|
|
with: |
|
|
|
with: |
|
|
|
path: ~/.pub-cache/hosted |
|
|
|
path: ~/.pub-cache/hosted |
|
|
|
key: dart-ci |
|
|
|
key: dart-ci |
|
|
|
- name: Checkout repository |
|
|
|
|
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install dart |
|
|
|
|
|
|
|
uses: dart-lang/setup-dart@8a4b97ea2017cc079571daec46542f76189836b1 # v1 |
|
|
|
|
|
|
|
- name: Setup |
|
|
|
- name: Setup |
|
|
|
run: ./tool/setup.sh |
|
|
|
run: ./tool/setup.sh |
|
|
|
- name: Build test Docker image |
|
|
|
|
|
|
|
run: ./tool/build-dev-container.sh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Check formatting |
|
|
|
- name: Check formatting |
|
|
|
run: melos run format-check |
|
|
|
run: melos run format-check |
|
|
|