Skip to content

feat: v14

feat: v14 #206

Workflow file for this run

name: CI
on:
push:
branches:
- next
- dev-harmony
- 3.0
pull_request:
branches:
- next
- dev-harmony
- 3.0
workflow_dispatch:
jobs:
lint:

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable pnpm
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run linter
run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable pnpm
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run test
run: npm run test
- name: Upload coverage reports to Codecov
if: ${{ always() }}
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: corepack enable pnpm
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build NutUI-React
run: npm run build
- name: Build NutUI-React-Taro
run: npm run build:taro
- name: Build NutUI-React Demo
run: npm run build:site
- name: Build NutUI-React Taro H5 Demo
run: npm run build:taro:site