d6cd8b78f1
* feat: decouple package deps and introduce yarn workspaces * update root directory * fix * fix scripts * fix lint * update path in scripts * remove yarn.lock files from packages * ignore workspace * dummy * dummy * remove comment check * revert workflow changes * ignore ws when installing gh actions * remove log * update path * fix * fix typo
31 lines
794 B
YAML
31 lines
794 B
YAML
name: "Bundle Size check @excalidraw/excalidraw"
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
size:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_JOB_NUMBER: 1
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: Setup Node.js 18.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
- name: Install
|
|
run: yarn --frozen-lockfile
|
|
- name: Install in packages/excalidraw
|
|
run: yarn --frozen-lockfile
|
|
working-directory: packages/excalidraw
|
|
env:
|
|
CI: true
|
|
- uses: andresz1/size-limit-action@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
build_script: build:umd
|
|
skip_step: install
|
|
directory: packages/excalidraw
|