Skip to content

chore(release): v1.4.3 #16

chore(release): v1.4.3

chore(release): v1.4.3 #16

Workflow file for this run

# 所有提交自动构建并测试
name: Build
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm test