Skip to content

Merge pull request #190 from ant-design/arvinxx-patch-1 #871

Merge pull request #190 from ant-design/arvinxx-patch-1

Merge pull request #190 from ant-design/arvinxx-patch-1 #871

Workflow file for this run

name: Test CI
on: [push, pull_request]
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install deps
run: pnpm install
- name: lint
run: pnpm run ci
- name: test
run: pnpm run test:coverage
- name: Generate coverage
run: bash <(curl -s https://codecov.io/bash)