Fix a bug in the prevChar
method of the PGML parser.
#32
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 Code Base | |
defaults: | |
run: | |
shell: bash | |
on: | |
push: | |
pull_request: | |
jobs: | |
eslint: | |
name: Lint TypeScript and JavaScript files with eslint | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install Dependencies and Build | |
run: npm ci --ignore-scripts && npm run build | |
- name: Lint files with eslint | |
run: npm run lint:check |