DEV-220 [FIX] Add custom width setting for Reorder list field (#692) #753
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: Run ESLint on Pull Requests | |
on: | |
- push | |
jobs: | |
build: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repository | |
- uses: actions/checkout@v1 | |
# Install Node.js | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
# Install dependencies | |
- run: npm ci | |
# Run ESLint | |
- uses: eslint/github-action@v0 |