Bump coverallsapp/github-action from 2.2.3 to 2.3.3 #1631
Workflow file for this run
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
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 |