mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-30 02:08:12 +08:00
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
# Unit Test Coverage Report
|
|
|
|
name: 🧪 Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: Coverage (${{ 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
|
|
with:
|
|
version: latest
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Cache ~/.pnpm-store
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: cache-pnpm-store
|
|
with:
|
|
path: ~/.pnpm-store
|
|
key: ${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}-
|
|
${{ runner.os }}-${{ matrix.node-version }}-test-
|
|
${{ runner.os }}-
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i --frozen-lockfile
|
|
- uses: ArtiomTr/jest-coverage-report-action@v2.0-rc.6
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
skip-step: install
|
|
test-script: pnpm run test:jest
|