feat!: go back on #221
and include spaces (without newlines) in JSX text
#81
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: Lint | |
on: | |
push: | |
branches: [master] | |
paths: | |
- grammar.js | |
pull_request: | |
paths: | |
- grammar.js | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: ${{vars.NODE_VERSION}} | |
- name: Install modules | |
run: npm ci --legacy-peer-deps | |
- name: Run ESLint | |
run: npm run lint |