Skip to content

chore: clean up ci

chore: clean up ci #2

Workflow file for this run

name: "Tests"
on:
pull_request:
push:
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all
- main # triggers on pushes that contain changes in main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- run: npm ci
- run: npm test