Skip to content

Support for Calculation 1.1 relationships #503

Support for Calculation 1.1 relationships

Support for Calculation 1.1 relationships #503

Workflow file for this run

name: Run Node Unit Tests
on:
pull_request:
branches:
- master
workflow_call:
workflow_dispatch:
permissions: {}
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- windows-2022
node-version:
- '18'
- '20'
- '21'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.6
- uses: actions/setup-node@v4.0.2
with:
cache: 'npm'
check-latest: true
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint with npm
run: npm run stylelint
- name: Test with npm
run: npm run test