Skip to content

Benchmarking Data Fixes (#32) #112

Benchmarking Data Fixes (#32)

Benchmarking Data Fixes (#32) #112

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