mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 03:38:20 +08:00
4058ba5344
* refactor: remove IGraph usage (#5336) * refactor: remove IGraph definition and usage * chore: mark the type problems * chore: update ci script * chore: update ci * refactor: remove history plugin (#5338) * refactor: upgrade to register plugins globally (#5337) * refactor: upgrade to register plugins globally * fix: ci * feat: register once default plugins during initialization * refactor: upgrade to register plugins globally --------- Co-authored-by: yvonneyx <banxuan.zyx@antgroup.com> * feat: add new spec definition (#5342) * feat: add new spec definition * refactor: remove background, cursor option * refactor: adjust palette option * refactor: adjust spec definition * refactor: use non-strict type checking * refactor: adjust type naming * refactor: add container option --------- Co-authored-by: Yuxin <55794321+yvonneyx@users.noreply.github.com> Co-authored-by: yvonneyx <banxuan.zyx@antgroup.com>
42 lines
910 B
YAML
42 lines
910 B
YAML
name: build
|
|
|
|
on: [push]
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint-and-build-g6:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
name: Install pnpm
|
|
with:
|
|
version: 8
|
|
run_install: false
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install --no-frozen-lockfile
|
|
|
|
- name: Run CI
|
|
run: |
|
|
npm run ci
|
|
|
|
- name: Upload blob report to GitHub Actions Artifacts
|
|
if: always()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: snapshots
|
|
path: |
|
|
packages/g6/tests/integration/snapshots/**/*-actual.svg
|
|
retention-days: 1
|