chore(deps): Bump dart-lang/setup-dart from e58aeb62aef51dcc4d0ba8eada7c08092aad5314 to 8a4b97ea2017cc079571daec46542f76189836b1 #1630
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
# Generated with aft. To update, run: `aft generate workflows` | ||
name: amplify_core | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
paths: | ||
- '.github/composite_actions/setup_firefox/action.yaml' | ||
- '.github/workflows/amplify_core.yaml' | ||
- '.github/workflows/dart_dart2js.yaml' | ||
- '.github/workflows/dart_ddc.yaml' | ||
- '.github/workflows/dart_native.yaml' | ||
- '.github/workflows/dart_vm.yaml' | ||
- 'packages/amplify_core/**/*.dart' | ||
- 'packages/amplify_core/**/*.yaml' | ||
- 'packages/amplify_core/lib/**/*' | ||
- 'packages/amplify_core/test/**/*' | ||
- 'packages/amplify_lints/lib/**/*.yaml' | ||
- 'packages/amplify_lints/pubspec.yaml' | ||
- 'packages/aws_common/lib/**/*.dart' | ||
- 'packages/aws_common/pubspec.yaml' | ||
- 'packages/aws_signature_v4/lib/**/*.dart' | ||
- 'packages/aws_signature_v4/pubspec.yaml' | ||
pull_request: | ||
paths: | ||
- '.github/composite_actions/setup_firefox/action.yaml' | ||
- '.github/workflows/amplify_core.yaml' | ||
- '.github/workflows/dart_dart2js.yaml' | ||
- '.github/workflows/dart_ddc.yaml' | ||
- '.github/workflows/dart_native.yaml' | ||
- '.github/workflows/dart_vm.yaml' | ||
- 'packages/amplify_core/**/*.dart' | ||
- 'packages/amplify_core/**/*.yaml' | ||
- 'packages/amplify_core/lib/**/*' | ||
- 'packages/amplify_core/test/**/*' | ||
- 'packages/amplify_lints/lib/**/*.yaml' | ||
- 'packages/amplify_lints/pubspec.yaml' | ||
- 'packages/aws_common/lib/**/*.dart' | ||
- 'packages/aws_common/pubspec.yaml' | ||
- 'packages/aws_signature_v4/lib/**/*.dart' | ||
- 'packages/aws_signature_v4/pubspec.yaml' | ||
schedule: | ||
- cron: "0 6,12 * * *" # Every day at 06:00 and 12:00 | ||
defaults: | ||
run: | ||
shell: bash | ||
permissions: read-all | ||
# Cancels in-progress job when there is another push to same ref. | ||
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
uses: ./.github/workflows/dart_vm.yaml | ||
with: | ||
package-name: amplify_core | ||
working-directory: packages/amplify_core | ||
has-goldens: false | ||
Check failure on line 63 in .github/workflows/amplify_core.yaml GitHub Actions / amplify_coreInvalid workflow file
|
||
native_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_native.yaml | ||
with: | ||
package-name: amplify_core | ||
working-directory: packages/amplify_core | ||
ddc_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_ddc.yaml | ||
with: | ||
package-name: amplify_core | ||
working-directory: packages/amplify_core | ||
dart2js_test: | ||
needs: test | ||
uses: ./.github/workflows/dart_dart2js.yaml | ||
with: | ||
package-name: amplify_core | ||
working-directory: packages/amplify_core |