refactor: EngineInfoManagerのリファクタリング #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build Preview Pages" | |
# プレビュー用ページをビルドする。 | |
# 詳細: https://github.com/voicevox/preview-pages?tab=readme-ov-file#%E4%BB%95%E7%B5%84%E3%81%BF | |
on: | |
push: | |
branches: | |
- main | |
- project-* | |
pull_request: | |
jobs: | |
# このJobの名前を変更したときは、voicevox/preview-pages側のscripts/collect.tsも変更すること。 | |
build_preview_pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
uses: ./.github/actions/setup-environment | |
- name: Build | |
run: | | |
npm run storybook:build -- --output-dir $(pwd)/dist_preview/storybook | |
npm run browser:build -- --base ./ --outDir $(pwd)/dist_preview/editor | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: preview-pages | |
path: dist_preview |