update country code to 1 to 20 digits #2738
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
# This workflow is used to verify the code quality by running tests | |
name: Verify Modernization UI | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "apps/modernization-ui/**" | |
jobs: | |
pipeline: | |
name: Verify and Ensure | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
working-directory: ./apps/modernization-ui | |
run: npm install | |
- name: Verify | |
working-directory: ./apps/modernization-ui | |
run: npx react-scripts test --watchAll=false | |
- name: Ensure | |
working-directory: ./apps/modernization-ui | |
run: npx react-scripts build |