This repository was archived by the owner on Aug 26, 2026. It is now read-only.
harden named and numeric entity conversion #1
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: test | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - run: node core.test.js | |
| - run: node site.test.js | |
| - name: Check JavaScript syntax | |
| shell: bash | |
| run: find . -path ./.git -prune -o -name '*.js' -print0 | xargs -0 -n1 node --check |