Skip to content

GitHub action to run tests on PRs #1

GitHub action to run tests on PRs

GitHub action to run tests on PRs #1

Workflow file for this run

name: Toolbelt Tests
on:
pull_requst:
- main
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test