Somewhat fixes to i18n system #13
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 and Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Setup up Node.js | |
uses: actions/setup-node@main | |
- name: Setup bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install and Build 🔧 | |
run: | | |
bun install | |
cd packages/parser | |
bun run build | |
cd ../.. | |
cd apps/parser-playground | |
bun run prod | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: apps/parser-playground/dist | |
target-folder: parser |