mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-30 02:08:12 +08:00
add yarn ci github actions for tests
This commit is contained in:
parent
09e0a05c19
commit
b7386b2e15
25
.github/workflows/yarn.js.yml
vendored
Normal file
25
.github/workflows/yarn.js.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
- 'feat/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- dev
|
||||
- 'feat/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: install --frozen-lockfile
|
||||
- run: npx lerna bootstrap
|
||||
- uses: borales/actions-yarn@v2.0.0
|
||||
with:
|
||||
cmd: test
|
Loading…
Reference in New Issue
Block a user