mirror of
https://gitee.com/antv/g6.git
synced 2024-11-30 02:38:20 +08:00
4040c6d463
* chore: make library build work * chore: fix type define error * test: fix lint error * chore: update github action * chore: fix typo
24 lines
412 B
YAML
24 lines
412 B
YAML
name: build
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node-version: '14'
|
|
|
|
- name: Run CI
|
|
run: |
|
|
npm install
|
|
npm run test
|
|
cd packages/g6
|
|
npm install
|
|
npm run ci |