g6/.github/workflows/build.yml
hustcc 4040c6d463
chore: make library build work (#4388)
* chore: make library build work

* chore: fix type define error

* test: fix lint error

* chore: update github action

* chore: fix typo
2023-04-20 18:01:52 +08:00

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