Skip to content

Explicitly install jest #2

Explicitly install jest

Explicitly install jest #2

Workflow file for this run

# Runs jest based unit tests for the binderhub-client JS package
name: "binderhub-client unit tests"
on:
pull_request:
paths:
- "js/packages/binderhub-client/**"
push:
paths:
- "js/**"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
- "update-*"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
cd js/packages/binderhub-client
npm install
- run: |
cd js/packages/binderhub-client
npm test