Skip to content

feat: add detailed type of plugin #150

feat: add detailed type of plugin

feat: add detailed type of plugin #150

Workflow file for this run

name: Test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20]
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn
- name: Build
run: yarn build
- name: Unit Test
run: yarn test:json
- name: Report Coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage/coverage-final.json
name: codecov