Skip to content

fix(ramp): Correct ramp v2 order detail's crypto amount formatting #194

fix(ramp): Correct ramp v2 order detail's crypto amount formatting

fix(ramp): Correct ramp v2 order detail's crypto amount formatting #194

name: Check Feature Flag Registry
on:
pull_request:
types:
- opened
- reopened
- synchronize
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
check-feature-flags:
name: Verify feature flags are registered
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
issues: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install CI script dependencies
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 #v3.0.2
with:
timeout_minutes: 10
max_attempts: 3
retry_wait_seconds: 30
command: cd .github/scripts && yarn --immutable
- name: Fetch base branch for diff
run: git fetch origin "$BASE_REF"
env:
BASE_REF: ${{ github.base_ref }}
- name: Check feature flag registry
env:
GITHUB_BASE_REF: ${{ github.base_ref }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn run check-feature-flag-registry
working-directory: '.github/scripts'