Excalidraw export (#2246)

This commit is contained in:
Guillaume Grossetie 2020-11-02 20:14:20 +01:00 committed by GitHub
parent 58861e87e5
commit a7da8901d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 6250 additions and 10 deletions

33
.github/workflows/build-packages.yml vendored Normal file
View file

@ -0,0 +1,33 @@
name: Build packages
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: |
npm ci
npm ci --prefix src/packages/excalidraw
npm ci --prefix src/packages/utils
- name: Build @excalidraw/excalidraw
run: |
npm run pack --prefix src/packages/excalidraw
- name: Build @excalidraw/utils
run: |
npm run pack --prefix src/packages/utils