Skip to content

Remove debug logs

Remove debug logs #92

Workflow file for this run

name: Build (dry run)
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: pnpm setup
uses: pnpm/action-setup@v3
with:
version: 9
- name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
run: pnpm install --frozen-lockfile
- name: Run check, lint and test
run: |
pnpm run check
pnpm run lint
pnpm run test
- name: Build
run: |
pnpm --filter redgeometry run build
pnpm --filter redgeometry-app run build