Skip to content

clean unit-tests and fix lint errors #5

clean unit-tests and fix lint errors

clean unit-tests and fix lint errors #5

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
name: Build and run tests
steps:
- uses: actions/checkout@v4
- name: setup node.je
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run lint