JSCAD Release V3 Alpha : 2025 JAN 05 #804
This file contains 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: [ '16', '18' ] | |
name: Node ${{ matrix.node }} test | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 7 | |
- name: Setup Node ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- run: pnpm --no-frozen-lockfile install | |
- run: pnpm test | |
- run: pnpm run test:tsd |