Skip to content

Benchmarking Updates (#33) #114

Benchmarking Updates (#33)

Benchmarking Updates (#33) #114

Workflow file for this run

name: Tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npm run format-check