TEMP - force a test #1
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_analytics_pinpoint_example | ||
on: push | ||
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: | ||
e2e_web_test: | ||
Check failure on line 20 in .github/workflows/amplify_analytics_pinpoint_example copy.yaml GitHub Actions / amplify_analytics_pinpoint_exampleInvalid workflow file
|
||
needs: [test] | ||
uses: ./.github/workflows/e2e_web copy.yaml | ||
secrets: inherit | ||
with: | ||
package-name: amplify_analytics_pinpoint_example | ||
working-directory: packages/analytics/amplify_analytics_pinpoint/example | ||
needs-aws-config: true |