Fix: Add validation tab hidden and change validation value single select #950
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: Linter | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: ['main'] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| cache: npm | |
| - run: npm install | |
| - name: Run linter | |
| run: npm run lint:fix | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| commit_message: 'ci: run linter' | |
| branch: ${{ github.head_ref }} |