Skip to content

fix(install-s3): S3 一键安装默认通道改为 stable(0.2.0 正式版默认) #37

fix(install-s3): S3 一键安装默认通道改为 stable(0.2.0 正式版默认)

fix(install-s3): S3 一键安装默认通道改为 stable(0.2.0 正式版默认) #37

Workflow file for this run

# CI for nuwa-cli: install, unit tests, and production build.
# LFS checkout is required so lanproxy binaries are present for build/copy.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
# Skip prepare during install so we control build timing after tests deps are ready.
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests
run: npm run test:run
- name: Build
run: npm run build