Skip to content

fix(pptx): import flowChartTerminator as a rounded pill #152

fix(pptx): import flowChartTerminator as a rounded pill

fix(pptx): import flowChartTerminator as a rounded pill #152

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
name: Typecheck, test, build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck (all workspaces)
run: pnpm run typecheck
- name: Test (library)
run: pnpm run test
- name: Build library bundle
run: pnpm run build:lib
- name: Build website
run: pnpm run build:website