Skip to content

chore: update version of @antv/component to 0.8.34 for dist build (#3… #3872

chore: update version of @antv/component to 0.8.34 for dist build (#3…

chore: update version of @antv/component to 0.8.34 for dist build (#3… #3872

Workflow file for this run

name: build
on: ["push"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14
- name: yarn install
run: |
yarn install
- name: lint
run: |
npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14
- name: yarn install
run: |
yarn install
- name: build
run: |
npm run build
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14
- name: yarn 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 }}