Revise README description for clarity and appeal #27
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: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [ | |
| # From https://github.com/nodejs/Release | |
| "20.x", # EoL by 2026-04-30 | |
| "22.x", # EoL by 2027-04-30 | |
| "24.x", # EoL by 2028-04-30 | |
| "latest", | |
| ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Test TypeScript | |
| run: npm run test:typescript | |
| env: | |
| CI: true | |
| - name: Unit tests | |
| run: npm run test | |
| env: | |
| CI: true | |
| - name: Lints | |
| run: npm run lint | |
| env: | |
| CI: true | |
| - name: Build | |
| run: npm run build | |
| env: | |
| CI: true | |
| - name: Lint packages | |
| run: npm run lint:package | |
| env: | |
| CI: true |