Skip to content

fix(ellipsis-test) tooltip show must need update region (#5436) #3686

fix(ellipsis-test) tooltip show must need update region (#5436)

fix(ellipsis-test) tooltip show must need update region (#5436) #3686

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install
run: |
npm install
- name: lint
run: |
npm run lint
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install
run: |
npm install
- name: build
run: |
npm run build
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install
run: |
yarn install
- name: test
run: |
npm run coverage
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}