Skip to content

Remove unused import statement #28

Remove unused import statement

Remove unused import statement #28

Workflow file for this run

name: Lint & Test
# Trigger the workflow on push or pull request commits only
on:
push:
branches:
- master
tags-ignore:
- '**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: make lint
- run: make test