Skip to content

refactor: simplify plugin and configs structure #52

refactor: simplify plugin and configs structure

refactor: simplify plugin and configs structure #52

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.18.0, 24.13.0]
env:
CI: true
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test