fix(io): svg path should return one geom2 #863
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: [ '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 |