mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-29 17:58:08 +08:00
38 lines
799 B
YAML
38 lines
799 B
YAML
# Unit Test
|
|
|
|
name: 🧪 Unit Test
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build:
|
|
name: Unit Test (${{ matrix.node-name }})
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: ['16']
|
|
include:
|
|
- node-version: '16'
|
|
node-name: 'Latest'
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Add dev branch
|
|
run: git branch dev origin/dev
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i --frozen-lockfile
|
|
- name: Lint
|
|
run: pnpm lint
|
|
- name: Test
|
|
run: pnpm test
|