๐๏ธ Harden security against untrusted epub #257
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: CI | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| branches: [master, main] | |
| workflow_call: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18, 20, 22] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Run linter | |
| run: npm run lint | |
| - name: Run type check | |
| run: npm run typecheck | |
| - name: Run tests | |
| run: npm test -- --run | |
| - name: Run packaging tests | |
| run: npm run test:packaging | |
| # Guards agreement with Java EPUBCheck, which the test suite cannot see: a | |
| # ported scenario with a subtly wrong expectation passes forever, and a new | |
| # check that fires where Java stays silent breaks no test at all. | |
| # | |
| # Deliberately no JVM here. Java's answers for every fixture are committed | |
| # under test/parity/java/, keyed by content, so this recomputes only the | |
| # TypeScript side and diffs it against the recorded oracle. Installing Java to | |
| # recompute an answer the repository already contains would buy nothing except | |
| # a slower job and a second thing to keep pinned to 5.3.0. | |
| parity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check parity against the committed baseline | |
| run: npm run parity:check |