Skip to content

add scripts and github action to run root test + lint #1

add scripts and github action to run root test + lint

add scripts and github action to run root test + lint #1

Workflow file for this run

name: root
on:
push:
paths:
- './*'
- './test/**'
- '.github/workflows/ci_root.yml'
- 'eslint.config.js'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run test