Skip to content

lint fixes

lint fixes #312

Workflow file for this run

on: push
name: tests
jobs:
test:
name: run tests
strategy:
matrix:
node: ["20.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run tests
run: npm run test