Skip to content

DEV: Set up stop-only test #6

DEV: Set up stop-only test

DEV: Set up stop-only test #6

Workflow file for this run

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