mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-03-31 21:30:22 +08:00
26 lines
642 B
YAML
26 lines
642 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [main, develop]
|
|
pull_request:
|
|
branches: [main, develop]
|
|
workflow_dispatch:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "16"
|
|
- name: install dependencies
|
|
run: yarn install
|
|
- name: run test
|
|
run: "yarn test:ci"
|
|
# uses: mattallty/jest-github-action@v1
|
|
# env:
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# with:
|
|
# test-command: "yarn test:ci"
|
|
# coverage-comment: ${{ github.event_name == 'pull_request'}}
|