Skip to content

feat: update plugin template string #131

feat: update plugin template string

feat: update plugin template string #131

Workflow file for this run

name: Test code
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
total-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
run_install: true
- name: Format checking
run: pnpm prettier && pnpm eslint
- name: Build testing for core
run: pnpm build
- name: Unit testing
run: pnpm test