ci(core): add PR title perf type (#1013) #4
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: Deploy Editor | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v2 | |
- run: pnpm install | |
- run: pnpm build-editor | |
env: | |
NODE_OPTIONS: '--max_old_space_size=8192' | |
- name: Deploy editor | |
run: | | |
git config --global user.name "[email protected]" | |
git config --global user.email "GitHub Action" | |
git remote set-url origin https://${ACCESS_TOKEN}@github.com/${REPO}.git | |
pnpm run predeploy | |
pnpm run deploy | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
REPO: ${{ github.repository }} |