mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(color): migrate color css var & simplify color box docs * Update unit-test.yml Co-authored-by: jeremywu <15975785+JeremyWuuuuu@users.noreply.github.com>
21 lines
393 B
YAML
21 lines
393 B
YAML
name: Unit Test
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
build:
|
|
name: Unit Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '12'
|
|
- name: Install dependencies
|
|
run: yarn bootstrap
|
|
- name: Lint
|
|
run: yarn lint
|
|
- name: Test
|
|
run: yarn test
|