Skip to content

fix: don't include playwright-report in tsconfig #20

fix: don't include playwright-report in tsconfig

fix: don't include playwright-report in tsconfig #20

Workflow file for this run

name: Deploy GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build apps
run: pnpm exec turbo build -F=synth-playground -F=editor-standalone
- name: Prepare Pages artifact
run: |
mkdir gh-pages-out
mv apps/editor-standalone/out gh-pages-out/editor
mv apps/synth-playground/out gh-pages-out/synth-playground
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: gh-pages-out
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4