Skip to content

Create tests.yml

Create tests.yml #1

Workflow file for this run

name: Test Methods
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
cache: 'npm'
- name: Run tests
run: npm test