Skip to content

DEV: Allow workflows to be run manually #45

DEV: Allow workflows to be run manually

DEV: Allow workflows to be run manually #45

Workflow file for this run

name: Test
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Check for calls to .only()
run: npm run stop-only
- name: Run tests
run: npm test