Bump follow-redirects from 1.15.2 to 1.15.4 in /browser/javascript/v1/react-app #62
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
name: Ampli Merge Check (Browser V1) | |
on: | |
pull_request: | |
paths: | |
- 'browser/javascript/v1/**' | |
- 'browser/typescript/v1/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: amplitudeinc/ampli | |
env: | |
API_URL: https://data-api.staging.amplitude.com/graphql | |
APP_URL: https://data.staging.amplitude.com/ | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: (Browser JS V1) Check the Data branch is merged before merging the Git branch | |
working-directory: ./browser/javascript/v1/react-app | |
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}} | |
- name: (Browser TS V1) Check the Data branch is merged before merging the Git branch | |
working-directory: ./browser/typescript/v1/react-app | |
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}} |