chore(authenticator_test): Updated Golden tests to run on any screen #22
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_db_common_example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- stable | ||
pull_request: | ||
paths: | ||
- '.github/workflows/amplify_db_common_example.yaml' | ||
- '.github/workflows/e2e_android.yaml' | ||
- '.github/workflows/e2e_ios.yaml' | ||
- '.github/workflows/e2e_linux.yaml' | ||
- '.github/workflows/e2e_web.yaml' | ||
- '.github/workflows/e2e_windows.yaml' | ||
- '.github/workflows/flutter_vm.yaml' | ||
- 'packages/amplify_core/lib/**/*.dart' | ||
- 'packages/amplify_core/pubspec.yaml' | ||
- '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' | ||
- 'packages/common/amplify_db_common/example/**/*.dart' | ||
- 'packages/common/amplify_db_common/example/**/*.yaml' | ||
- 'packages/common/amplify_db_common/example/lib/**/*' | ||
- 'packages/common/amplify_db_common/example/test/**/*' | ||
- 'packages/common/amplify_db_common/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common/pubspec.yaml' | ||
- 'packages/common/amplify_db_common_dart/lib/**/*.dart' | ||
- 'packages/common/amplify_db_common_dart/pubspec.yaml' | ||
schedule: | ||
- cron: "0 0 * * 0" # Every Sunday at 00:00 | ||
defaults: | ||
run: | ||
shell: bash | ||
# These permissions are needed to interact with GitHub's OIDC Token endpoint. | ||
permissions: | ||
id-token: write | ||
contents: read | ||
# 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/flutter_vm.yaml | ||
Check failure on line 52 in .github/workflows/amplify_db_common_example.yaml GitHub Actions / amplify_db_common_exampleInvalid workflow file
|
||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
e2e_android_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_android.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_ios_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_ios.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_web_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_web.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_linux_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_linux.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true | ||
e2e_windows_test: | ||
needs: [test] | ||
uses: ./.github/workflows/e2e_windows.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_db_common_example | ||
working-directory: packages/common/amplify_db_common/example | ||
needs-aws-config: true |