Revert to the old pipe syntax. #251
Workflow file for this run
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
# Created with package:mono_repo v6.6.1 | |
name: Dart CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
defaults: | |
run: | |
shell: bash | |
env: | |
PUB_ENVIRONMENT: bot.github | |
permissions: read-all | |
jobs: | |
job_001: | |
name: mono_repo self validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: mono_repo self validate | |
run: dart pub global activate mono_repo 6.6.1 | |
- name: mono_repo self validate | |
run: dart pub global run mono_repo generate --validate | |
job_002: | |
name: "analyze; Dart 3.1.0; PKGS: ngast, ngcompiler, ngdart, ngforms, ngrouter, ngtest; `dart analyze --fatal-infos .`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest;commands:analyze" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
- id: ngdart_pub_upgrade | |
name: ngdart; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngdart | |
- name: "ngdart; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngdart_pub_upgrade.conclusion == 'success'" | |
working-directory: ngdart | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
job_003: | |
name: "analyze; Dart 3.1.0; PKGS: ngast, ngcompiler, ngdart, ngforms, ngrouter, ngtest; `dart format --output=none --set-exit-if-changed .`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest;commands:format" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart format --output=none --set-exit-if-changed ." | |
run: "dart format --output=none --set-exit-if-changed ." | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart format --output=none --set-exit-if-changed ." | |
run: "dart format --output=none --set-exit-if-changed ." | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
- id: ngdart_pub_upgrade | |
name: ngdart; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngdart | |
- name: "ngdart; dart format --output=none --set-exit-if-changed ." | |
run: "dart format --output=none --set-exit-if-changed ." | |
if: "always() && steps.ngdart_pub_upgrade.conclusion == 'success'" | |
working-directory: ngdart | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart format --output=none --set-exit-if-changed ." | |
run: "dart format --output=none --set-exit-if-changed ." | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart format --output=none --set-exit-if-changed ." | |
run: "dart format --output=none --set-exit-if-changed ." | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart format --output=none --set-exit-if-changed ." | |
run: "dart format --output=none --set-exit-if-changed ." | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
job_004: | |
name: "analyze; Dart dev; PKGS: ngast, ngcompiler, ngdart, ngforms, ngrouter, ngtest; `dart analyze --fatal-infos .`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest;commands:analyze" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
- id: ngdart_pub_upgrade | |
name: ngdart; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngdart | |
- name: "ngdart; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngdart_pub_upgrade.conclusion == 'success'" | |
working-directory: ngdart | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
job_005: | |
name: "analyze; Dart stable; PKGS: ngast, ngcompiler, ngdart, ngforms, ngrouter, ngtest; `dart analyze --fatal-infos .`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest;commands:analyze" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngast-ngcompiler-ngdart-ngforms-ngrouter-ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
- id: ngdart_pub_upgrade | |
name: ngdart; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngdart | |
- name: "ngdart; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngdart_pub_upgrade.conclusion == 'success'" | |
working-directory: ngdart | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart analyze --fatal-infos ." | |
run: dart analyze --fatal-infos . | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
job_006: | |
name: "build; Dart 3.1.0; PKG: _tests; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:_tests;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_007: | |
name: "build; Dart 3.1.0; PKG: ngforms; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngforms;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngforms | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_008: | |
name: "build; Dart 3.1.0; PKG: ngrouter; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngrouter;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngrouter | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_009: | |
name: "build; Dart 3.1.0; PKG: ngtest; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngtest;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_010: | |
name: "build; Dart dev; PKG: _tests; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:_tests;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_011: | |
name: "build; Dart dev; PKG: ngforms; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngforms;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngforms | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_012: | |
name: "build; Dart dev; PKG: ngrouter; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngrouter;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngrouter | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_013: | |
name: "build; Dart dev; PKG: ngtest; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngtest;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_014: | |
name: "build; Dart stable; PKG: _tests; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:_tests;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_015: | |
name: "build; Dart stable; PKG: ngforms; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngforms;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngforms | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_016: | |
name: "build; Dart stable; PKG: ngrouter; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngrouter;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngrouter | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_017: | |
name: "build; Dart stable; PKG: ngtest; `dart run build_runner build --fail-on-severe`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngtest;commands:command_0" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart run build_runner build --fail-on-severe" | |
run: dart run build_runner build --fail-on-severe | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
job_018: | |
name: "unit_test; Dart 3.1.0; PKG: _tests; `dart run build_runner test --fail-on-severe -- -P browser`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:_tests;commands:command_2" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart run build_runner test --fail-on-severe -- -P browser" | |
run: dart run build_runner test --fail-on-severe -- -P browser | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_019: | |
name: "unit_test; Dart 3.1.0; PKG: _tests; `dart test -P vm`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:_tests;commands:command_1" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart test -P vm" | |
run: dart test -P vm | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_020: | |
name: "unit_test; Dart 3.1.0; PKG: ngast; `dart test -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngast;commands:test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngast | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart test -P ci" | |
run: dart test -P ci | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_021: | |
name: "unit_test; Dart 3.1.0; PKG: ngcompiler; `dart test -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngcompiler;commands:test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngcompiler | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart test -P ci" | |
run: dart test -P ci | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_022: | |
name: "unit_test; Dart 3.1.0; PKG: ngforms; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngforms;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngforms | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_023: | |
name: "unit_test; Dart 3.1.0; PKG: ngrouter; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngrouter;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngrouter | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_024: | |
name: "unit_test; Dart 3.1.0; PKG: ngtest; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngtest;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0;packages:ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:3.1.0 | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: "3.1.0" | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_025: | |
name: "unit_test; Dart dev; PKG: _tests; `dart run build_runner test --fail-on-severe -- -P browser`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:_tests;commands:command_2" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart run build_runner test --fail-on-severe -- -P browser" | |
run: dart run build_runner test --fail-on-severe -- -P browser | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_026: | |
name: "unit_test; Dart dev; PKG: _tests; `dart test -P vm`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:_tests;commands:command_1" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart test -P vm" | |
run: dart test -P vm | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_027: | |
name: "unit_test; Dart dev; PKG: ngast; `dart test -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngast;commands:test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngast | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart test -P ci" | |
run: dart test -P ci | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_028: | |
name: "unit_test; Dart dev; PKG: ngcompiler; `dart test -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngcompiler;commands:test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngcompiler | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart test -P ci" | |
run: dart test -P ci | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_029: | |
name: "unit_test; Dart dev; PKG: ngforms; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngforms;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngforms | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_030: | |
name: "unit_test; Dart dev; PKG: ngrouter; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngrouter;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngrouter | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_031: | |
name: "unit_test; Dart dev; PKG: ngtest; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngtest;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev;packages:ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:dev | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_032: | |
name: "unit_test; Dart stable; PKG: _tests; `dart run build_runner test --fail-on-severe -- -P browser`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:_tests;commands:command_2" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart run build_runner test --fail-on-severe -- -P browser" | |
run: dart run build_runner test --fail-on-severe -- -P browser | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_033: | |
name: "unit_test; Dart stable; PKG: _tests; `dart test -P vm`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:_tests;commands:command_1" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:_tests | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: _tests_pub_upgrade | |
name: _tests; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: _tests | |
- name: "_tests; dart test -P vm" | |
run: dart test -P vm | |
if: "always() && steps._tests_pub_upgrade.conclusion == 'success'" | |
working-directory: _tests | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_034: | |
name: "unit_test; Dart stable; PKG: ngast; `dart test -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngast;commands:test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngast | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngast_pub_upgrade | |
name: ngast; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngast | |
- name: "ngast; dart test -P ci" | |
run: dart test -P ci | |
if: "always() && steps.ngast_pub_upgrade.conclusion == 'success'" | |
working-directory: ngast | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_035: | |
name: "unit_test; Dart stable; PKG: ngcompiler; `dart test -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngcompiler;commands:test" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngcompiler | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngcompiler_pub_upgrade | |
name: ngcompiler; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngcompiler | |
- name: "ngcompiler; dart test -P ci" | |
run: dart test -P ci | |
if: "always() && steps.ngcompiler_pub_upgrade.conclusion == 'success'" | |
working-directory: ngcompiler | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_036: | |
name: "unit_test; Dart stable; PKG: ngforms; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngforms;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngforms | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngforms_pub_upgrade | |
name: ngforms; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngforms | |
- name: "ngforms; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngforms_pub_upgrade.conclusion == 'success'" | |
working-directory: ngforms | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_037: | |
name: "unit_test; Dart stable; PKG: ngrouter; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngrouter;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngrouter | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngrouter_pub_upgrade | |
name: ngrouter; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngrouter | |
- name: "ngrouter; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngrouter_pub_upgrade.conclusion == 'success'" | |
working-directory: ngrouter | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 | |
job_038: | |
name: "unit_test; Dart stable; PKG: ngtest; `dart run build_runner test --fail-on-severe -- -P ci`" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache Pub hosted dependencies | |
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngtest;commands:command_3" | |
restore-keys: | | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable;packages:ngtest | |
os:ubuntu-latest;pub-cache-hosted;sdk:stable | |
os:ubuntu-latest;pub-cache-hosted | |
os:ubuntu-latest | |
- name: Setup Dart SDK | |
uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: stable | |
- id: checkout | |
name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- id: ngtest_pub_upgrade | |
name: ngtest; dart pub upgrade | |
run: dart pub upgrade | |
if: "always() && steps.checkout.conclusion == 'success'" | |
working-directory: ngtest | |
- name: "ngtest; dart run build_runner test --fail-on-severe -- -P ci" | |
run: dart run build_runner test --fail-on-severe -- -P ci | |
if: "always() && steps.ngtest_pub_upgrade.conclusion == 'success'" | |
working-directory: ngtest | |
needs: | |
- job_001 | |
- job_002 | |
- job_003 | |
- job_004 | |
- job_005 | |
- job_006 | |
- job_007 | |
- job_008 | |
- job_009 | |
- job_010 | |
- job_011 | |
- job_012 | |
- job_013 | |
- job_014 | |
- job_015 | |
- job_016 | |
- job_017 |