mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-11-27 08:39:59 +08:00
22 lines
440 B
YAML
22 lines
440 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "12"
|
|
- name: install dependencies
|
|
run: yarn install
|
|
- name: run test
|
|
run: yarn run test:ci
|
|
- name: run build
|
|
run: yarn run prepublish:ci
|