Skip to content

[F] Fix quotation marks & some style & expressions #11

[F] Fix quotation marks & some style & expressions

[F] Fix quotation marks & some style & expressions #11

Workflow file for this run

name: PR Build
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main, develop]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'yarn'
- name: Build Preview
run: |
yarn install --frozen-lockfile
yarn build-preview
rm -rf dist/web.tgz
- name: Save PR number
run: echo ${{ github.event.pull_request.number }} > dist/pr_number.txt
- name: Upload Artifact
uses: actions/upload-artifact@v7
with:
name: preview-dist
path: dist/
retention-days: 1