Skip to content

2.0.1

2.0.1 #42

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Tests
on:
push:
paths:
- '**/*.js'
- '**/*.csv'
- '**/*.json'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm clean-install-test
- name: Coveralls
uses: coverallsapp/github-action@v2