Skip to content

feat: upgrade packages, workflows and code structure #54

feat: upgrade packages, workflows and code structure

feat: upgrade packages, workflows and code structure #54

Workflow file for this run

---
name: test
on:
- push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: "current"
- run: npm install
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: "current"
- run: npm install
- run: npm run test