Skip to content

chore: fix eslint

chore: fix eslint #37

Workflow file for this run

name: Build
on:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: npm install, build, test
run: |
npm ci
npm run build
npm run test