Skip to content

更新tsconfig配置,添加对API和核心包的引用,优化项目结构 #55

更新tsconfig配置,添加对API和核心包的引用,优化项目结构

更新tsconfig配置,添加对API和核心包的引用,优化项目结构 #55

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test