Internal method rename #172
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: Node Unit Tests | |
| on: | |
| push: | |
| branches-ignore: | |
| - "gh-pages" | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
| node: ["22", "24", "26"] | |
| name: Node.js ${{ matrix.node }} on ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # 6.4.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| # Do *not* use cache (see: tanstack cache poisoning vuln) | |
| # cache: npm | |
| - run: npm install | |
| - run: npm test | |
| env: | |
| YARN_GPG: no |