mirror of
https://github.com/langgenius/dify.git
synced 2026-02-17 16:34:42 +08:00
45 lines
917 B
YAML
45 lines
917 B
YAML
name: Run Unit Test For SDKs
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- sdks/**
|
|
|
|
concurrency:
|
|
group: sdk-tests-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: unit test for Node.js SDK
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: sdks/nodejs-client
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
<<<<<<< HEAD
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
=======
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v6
|
|
>>>>>>> 328897f81c (build: require node 24.13.0 (#30945))
|
|
with:
|
|
node-version: 24
|
|
cache: ''
|
|
cache-dependency-path: 'pnpm-lock.yaml'
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Test
|
|
run: pnpm test
|