Merge pull request #1260 from jsxcad/xform #1175
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
# 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: (sudo apt-get install -y build-essential libxi-dev libglu1-mesa-dev libglew-dev pkg-config xvfb) | |
- run: npm ci | |
- run: (cd algorithm/cgal; ./install_native.sh) | |
- run: (cd algorithm/cgal; ./install_wasm.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: xvfb-run -s "-ac -screen 0 1280x1024x24" npm run doc -- --quiet | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
- name: Make wasm available | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cgal_browser.wasm | |
path: es6/cgal_browser.wasm |