Skip to content

Merge pull request #129 from vincentmarchetti/3dtsg-main #82

Merge pull request #129 from vincentmarchetti/3dtsg-main

Merge pull request #129 from vincentmarchetti/3dtsg-main #82

Workflow file for this run

name: NPM build + test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16' ]
name: Node ${{ matrix.node }} build
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node }}-npm-${{ hashFiles('**/package-lock.lock') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run build
# - run: npm run test
# @todo these are not working currently.
# - run: node pkg-tests/node-load.js
# - run: node pkg-tests/node-load.mjs
# - run: node pkg-tests/node-umd.js