refactor(payments): add card_holder_name to request only if the value is present #2092
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: CI/CD Pipeline | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.AUTORELEASE_PAT || github.token }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
run: npm install | |
- name: Display Node.js version | |
run: node --version | |
- name: "Rescript Code Compile" | |
run: npm run re:build | |
- name: "Build" | |
run: npm run build | |
- name: "Test React Hooks Properties" | |
run: npm run test:hooks | |
- name: npm release | |
run: npx semantic-release --debug; |