Skip to content

fix(Funnel): 增加留存图的间距 (#371) #339

fix(Funnel): 增加留存图的间距 (#371)

fix(Funnel): 增加留存图的间距 (#371) #339

Workflow file for this run

name: CI on Master
on:
push:
branches:
- master
jobs:
install:
name: Install dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 16
- name: Cache Node.js modules
id: cache-node-modules
uses: actions/[email protected]
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install
unit_test:
name: Unit test
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 16
- name: Restore Node.js modules
uses: actions/[email protected]
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Cache test report
id: cache-test-report
uses: actions/[email protected]
with:
path: coverage/lcov.info
key: test-report-${{ github.sha }}
- name: Test
if: steps.cache-test-report.outputs.cache-hit != 'true'
run: yarn test --coverage
sonar:
name: Sonar scan
needs:
- unit_test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Restore test report
uses: actions/[email protected]
with:
path: coverage/lcov.info
key: test-report-${{ github.sha }}
- name: Upload reports to SonarCloud
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
build:
name: Build package
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 16
- name: Restore Node.js modules
uses: actions/[email protected]
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Cache package
id: cache-package
uses: actions/[email protected]
with:
path: |
dist
es
lib
key: package-${{ github.sha }}
- name: Build
if: steps.cache-package.outputs.cache-hit != 'true'
run: yarn build