Skip to content

Move tests workflow to root .github directory #1

Move tests workflow to root .github directory

Move tests workflow to root .github directory #1

Workflow file for this run

name: Tests (Jest)
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install
run: npm ci
- name: Run tests
run: npm test