Skip to content

Support point and segment extrusion #1076

Support point and segment extrusion

Support point and segment extrusion #1076

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: (sudo apt-get install libboost-all-dev)
- run: npm ci
- run: (cd algorithm/cgal; ./install_native.sh)
- run: npm run bootstrap
- run: npm run depcheck
- run: npm run lint
- run: npm run test
- run: npm run rollup
- run: ./publish-es6.sh
- run: ./publish-wasm.sh
- run: npm run doc -- --quiet
- name: Upload Artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: differences
path: |
**/*.difference.png
**/*.observed.*
**/*.md
**/*.stl
!**/node_modules/**
env:
NODE_OPTIONS: --max_old_space_size=4096