Skip to content

Merge pull request #130 from equinor/include_mouse_events_with_wellbo… #4

Merge pull request #130 from equinor/include_mouse_events_with_wellbo…

Merge pull request #130 from equinor/include_mouse_events_with_wellbo… #4

Workflow file for this run

name: Run tests and upload coverage
on:
push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Run tests
run: npx jest --coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}