Skip to content

[FME-9594] fix build, add github workflow, add evaluationWithDetails #3

[FME-9594] fix build, add github workflow, add evaluationWithDetails

[FME-9594] fix build, add github workflow, add evaluationWithDetails #3

Workflow file for this run

name: test
on:
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: npm ci
run: npm ci
- name: npm check
run: npm run check
- name: npm test
run: npm run test