Skip to content

fix(cli): add MIT license and optimize property handling #35

fix(cli): add MIT license and optimize property handling

fix(cli): add MIT license and optimize property handling #35

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Build Decoco
run: pnpm run --filter renderer build && pnpm run --filter core build
- name: Start development server
run: |
nohup pnpm run --filter examples dev & # start dev server in the background
sleep 8 # wait for server to start
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30