Skip to content

[FME-9861] use jest for unit tests #14

[FME-9861] use jest for unit tests

[FME-9861] use jest for unit tests #14

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