Skip to content

fix mm unit

fix mm unit #797

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: Autotests
on:
push:
branches: [ master, '*' ]
pull_request:
branches: [ master ]
jobs:
multios:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Autotest
run: npm test
env:
CI: true
standalone:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm ci
- name: Build standalone apps
run: npm run pkg
- name: Save distributives as artifacts
uses: actions/upload-artifact@v4
with:
name: standalone-distributives
path: dist