element-plus/.github/workflows/unit-test.yml
三咲智子 bdf7dfb3e0
chore(project): use pretty-quick (#3755)
* chore(project): use pretty-quick

* refactor: add dev branch
2021-10-01 14:17:16 +08:00

36 lines
801 B
YAML

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@v2
with:
fetch-depth: 0
- name: Add dev branch
run: git branch dev origin/dev
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.15.1
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test