Skip to content

refactor: 重构构建流程,支持并行构建插件,输出 ESM 和 UMD 格式,优化类型声明生成 #807

refactor: 重构构建流程,支持并行构建插件,输出 ESM 和 UMD 格式,优化类型声明生成

refactor: 重构构建流程,支持并行构建插件,输出 ESM 和 UMD 格式,优化类型声明生成 #807

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test
on:
pull_request:
branches: [main, dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
- name: Install dependencies
run: |
yarn install
- name: Test
run: yarn test