chore: improve copy field border and label behavior & add padding to … #454
  
    
      This file contains hidden or 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: Format | |
| on: | |
| push: | |
| paths: | |
| - "web-editor/**" | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - "web-editor/**" | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: Validate format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16 | |
| - name: Install Node.js dependencies | |
| run: npm ci | |
| working-directory: web-editor | |
| - name: Run prettier | |
| run: npx prettier --check src | |
| working-directory: web-editor |