Skip to content

Bump @types/node from 20.10.5 to 20.14.10 #1573

Bump @types/node from 20.10.5 to 20.14.10

Bump @types/node from 20.10.5 to 20.14.10 #1573

name: Test Performance
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- name: Checkout test target
uses: actions/checkout@v4
with:
# Repository name with owner. For example, actions/checkout
# Default: ${{ github.repository }}
repository: "ianmackenzie/elm-geometry"
# Relative path under $GITHUB_WORKSPACE to place the repository
path: "ianmackenzie/elm-geometry"
- name: Setup for ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci
run: |
npm ci
- name: Compile
run: |
npm run compile
- name: Install Elm
run: |
npm install -g elm
- name: Elm make
run: |
cd ./ianmackenzie/elm-geometry
elm make ./src/Arc2d.elm
- name: Run performance test
run: |
npx ts-node ./test/performance.ts ./ianmackenzie/elm-geometry