mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
4e5ef0d3a8
- Update the build script for generating *.d.ts files - Update package.json module entry. - Update CI pipeline node version - Reorganized main bundle structure - Update i18n functionalities
22 lines
417 B
YAML
22 lines
417 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: '16'
|
|
cache: 'yarn'
|
|
- name: Install dependencies
|
|
run: yarn bootstrap
|
|
- name: Lint
|
|
run: yarn lint
|
|
- name: Test
|
|
run: yarn test
|