Skip to content

Add more metrics and clean up old code #1

Add more metrics and clean up old code

Add more metrics and clean up old code #1

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [main]
jobs:
build-and-test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: Run tests on diffed files
run: npm run test