JSCAD Release V3 Alpha : 2026 JAN 18 #912
Workflow file for this run
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 CI Workflow | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - V3 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [ '20', '22' ] | |
| name: Node ${{ matrix.node }} test | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Setup Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'pnpm' | |
| - name: Run tests | |
| run: | | |
| pnpm --no-frozen-lockfile install | |
| pnpm test | |
| pnpm run test:tsd |