Files
xyflow/.github/actions/ci-checks/action.yml
T
2024-07-01 16:18:52 +02:00

23 lines
471 B
YAML

name: 'CI checks'
runs:
using: 'composite'
steps:
- name: Build
run: pnpm build
shell: bash
- name: Typecheck
run: pnpm typecheck
shell: bash
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps
shell: bash
- name: Test React Flow
run: pnpm test:react
shell: bash
env:
CI: true
# - name: Test Svelte Flow
# run: pnpm test:svelte
# shell: bash