Skip to content

clean up unused variables, fix warnings #6

clean up unused variables, fix warnings

clean up unused variables, fix warnings #6

Workflow file for this run

name: CI
on:
push:
branches: [ master, refactor ]
pull_request:
branches: [ master, refactor ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint